showBS<T> method
PersistentBottomSheetController
showBS<T>({
- required WidgetBuilder builder,
- Color? backgroundColor,
- double? elevation,
- ShapeBorder? shape,
- Clip? clipBehavior,
Shows a material design bottom sheet in the nearest material.Scaffold ancestor.
Equivalent to material.showBottomSheet.
Implementation
material.PersistentBottomSheetController<T> showBS<T>({
required material.WidgetBuilder builder,
material.Color? backgroundColor,
double? elevation,
material.ShapeBorder? shape,
material.Clip? clipBehavior,
}) {
return material.showBottomSheet(
context: this,
builder: builder,
backgroundColor: backgroundColor,
elevation: elevation,
shape: shape,
clipBehavior: clipBehavior,
);
}