showGestureBottomUpModal<T> function

Future<T?> showGestureBottomUpModal<T>({
  1. required BuildContext context,
  2. required GestureRouteDelegate<T> gestureDelegate,
  3. required WidgetBuilder builder,
  4. Color? backgroundColor,
  5. double? elevation,
  6. ShapeBorder? shape,
  7. Clip? clipBehavior,
  8. BoxConstraints? constraints,
  9. Color? barrierColor,
  10. bool useRootNavigator = false,
  11. bool isDismissible = true,
  12. RouteSettings? routeSettings,
})

Implementation

Future<T?> showGestureBottomUpModal<T>({
  required BuildContext context,
  required GestureRouteDelegate<T> gestureDelegate,
  required WidgetBuilder builder,
  Color? backgroundColor,
  double? elevation,
  ShapeBorder? shape,
  Clip? clipBehavior,
  BoxConstraints? constraints,
  Color? barrierColor,
  bool useRootNavigator = false,
  bool isDismissible = true,
  RouteSettings? routeSettings,
}) {
  return createGestureBottomUpModalDelegate<T>(
    context: context,
    builder: builder,
    backgroundColor: backgroundColor,
    elevation: elevation,
    shape: shape,
    clipBehavior: clipBehavior,
    constraints: constraints,
    barrierColor: barrierColor,
    useRootNavigator: useRootNavigator,
    routeSettings: routeSettings,
  )(gestureDelegate);
}