showBottomSheet<T> method
PersistentBottomSheetController
showBottomSheet<T>({
- required BuildContext context,
- required WidgetBuilder builder,
- Color? backgroundColor,
- double? elevation,
- ShapeBorder? shape,
- Clip? clip,
- BoxConstraints? constraints,
- bool? enableDrag,
- AnimationController? transitionAnimationController,
Implementation
PersistentBottomSheetController<T> showBottomSheet<T>({
required BuildContext context,
required WidgetBuilder builder,
Color? backgroundColor,
double? elevation,
ShapeBorder? shape,
Clip? clip,
BoxConstraints? constraints,
bool? enableDrag,
AnimationController? transitionAnimationController,
}) {
return m.showBottomSheet(
context: this,
builder: builder,
backgroundColor: backgroundColor,
elevation: elevation,
shape: shape,
clipBehavior: clip,
constraints: constraints,
enableDrag: enableDrag,
transitionAnimationController: transitionAnimationController);
}