showBottomSheet<T> method

PersistentBottomSheetController showBottomSheet<T>({
  1. required BuildContext context,
  2. required WidgetBuilder builder,
  3. Color? backgroundColor,
  4. double? elevation,
  5. ShapeBorder? shape,
  6. Clip? clip,
  7. BoxConstraints? constraints,
  8. bool? enableDrag,
  9. 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);
}