FModalSheetRoute<T> constructor

FModalSheetRoute<T>({
  1. required FSheetStyle style,
  2. required FLayout side,
  3. required WidgetBuilder builder,
  4. double? mainAxisMaxRatio = 9 / 16,
  5. CapturedThemes? capturedThemes,
  6. String? barrierOnTapHint,
  7. String? barrierLabel,
  8. bool barrierDismissible = true,
  9. BoxConstraints constraints = const BoxConstraints(),
  10. bool draggable = true,
  11. AnimationController? transitionAnimationController,
  12. Offset? anchorPoint,
  13. bool useSafeArea = false,
  14. RouteSettings? settings,
})

Creates a FModalSheetRoute.

Implementation

FModalSheetRoute({
  required this.style,
  required this.side,
  required this.builder,
  this.mainAxisMaxRatio = 9 / 16,
  this.capturedThemes,
  this.barrierOnTapHint,
  this.barrierLabel,
  this.barrierDismissible = true,
  this.constraints = const BoxConstraints(),
  this.draggable = true,
  this.transitionAnimationController,
  this.anchorPoint,
  this.useSafeArea = false,
  super.settings,
});