FormeBottomSheetConfiguration constructor

const FormeBottomSheetConfiguration({
  1. Curve animationCurve = Curves.linear,
  2. bool animationEnable = true,
  3. Duration animationDuration = const Duration(milliseconds: 150),
  4. Color? backgroundColor,
  5. double? elevation,
  6. ShapeBorder? shape = const RoundedRectangleBorder(borderRadius: BorderRadius.vertical(top: Radius.circular(10.0))),
  7. Clip? clipBehavior,
  8. BoxConstraints? constraints,
  9. Color? barrierColor,
  10. AnimationController? transitionAnimationController,
  11. bool isDismissible = true,
  12. bool isScrollControlled = true,
  13. bool useRootNavigator = false,
  14. double? maximumHeight = 300,
  15. bool performSearchAfterOpen = false,
})

Implementation

const FormeBottomSheetConfiguration({
  this.animationCurve = Curves.linear,
  this.animationEnable = true,
  this.animationDuration = const Duration(milliseconds: 150),
  this.backgroundColor,
  this.elevation,
  this.shape = const RoundedRectangleBorder(
    borderRadius: BorderRadius.vertical(top: Radius.circular(10.0)),
  ),
  this.clipBehavior,
  this.constraints,
  this.barrierColor,
  this.transitionAnimationController,
  this.isDismissible = true,
  this.isScrollControlled = true,
  this.useRootNavigator = false,
  this.maximumHeight = 300,
  this.performSearchAfterOpen = false,
});