BottomSheetViewPlus constructor

const BottomSheetViewPlus({
  1. Key? key,
  2. required AnimationController animationController,
  3. required WidgetBuilder builder,
  4. bool enableDrag = true,
  5. VoidCallback? onClosing,
  6. VoidCallback? onDismissed,
  7. bool isPersistent = false,
  8. Color? backgroundColor,
  9. double? elevation,
  10. ShapeBorder? shape,
  11. Clip? clipBehavior,
  12. BoxConstraints? constraints,
  13. bool? isDragMode,
  14. bool? enableHalf,
  15. VoidCallback? onDispose,
  16. double? offsetThreshold,
  17. ValueChanged<BottomSheetBehavior>? onBehaviorChanged,
})

Implementation

const BottomSheetViewPlus({
  super.key,
  required this.animationController,
  required this.builder,
  this.enableDrag = true,
  this.onClosing,
  this.onDismissed,
  this.isPersistent = false,
  this.backgroundColor,
  this.elevation,
  this.shape,
  this.clipBehavior,
  this.constraints,
  this.isDragMode,
  this.enableHalf,
  this.onDispose,
  this.offsetThreshold,
  this.onBehaviorChanged,
});