Unverified Commit 1877efed authored by Bruno Leroux's avatar Bruno Leroux Committed by GitHub

Add documentation references to BottomSheetThemeData (#107149)

Co-authored-by: 's avatarBruno Leroux <bruno.leroux@gmail.com>
parent f396e289
...@@ -61,6 +61,8 @@ typedef BottomSheetDragEndHandler = void Function( ...@@ -61,6 +61,8 @@ typedef BottomSheetDragEndHandler = void Function(
/// non-modal "persistent" bottom sheets. /// non-modal "persistent" bottom sheets.
/// * [showModalBottomSheet], which can be used to display a modal bottom /// * [showModalBottomSheet], which can be used to display a modal bottom
/// sheet. /// sheet.
/// * [BottomSheetThemeData], which can be used to customize the default
/// bottom sheet property values.
/// * <https://material.io/design/components/sheets-bottom.html> /// * <https://material.io/design/components/sheets-bottom.html>
class BottomSheet extends StatefulWidget { class BottomSheet extends StatefulWidget {
/// Creates a bottom sheet. /// Creates a bottom sheet.
......
...@@ -1736,6 +1736,8 @@ class Scaffold extends StatefulWidget { ...@@ -1736,6 +1736,8 @@ class Scaffold extends StatefulWidget {
/// * [showBottomSheet], which displays a bottom sheet as a route that can /// * [showBottomSheet], which displays a bottom sheet as a route that can
/// be dismissed with the scaffold's back button. /// be dismissed with the scaffold's back button.
/// * [showModalBottomSheet], which displays a modal bottom sheet. /// * [showModalBottomSheet], which displays a modal bottom sheet.
/// * [BottomSheetThemeData], which can be used to customize the default
/// bottom sheet property values when using a [BottomSheet].
final Widget? bottomSheet; final Widget? bottomSheet;
/// If true the [body] and the scaffold's floating widgets should size /// If true the [body] and the scaffold's floating widgets should size
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment