showCDialog<T> method
Future<T?>
showCDialog<T>({
- required WidgetBuilder builder,
- Cancellable? cancellable,
- bool barrierDismissible = true,
- Color? barrierColor = Colors.black54,
- String? barrierLabel,
- bool useSafeArea = true,
- RouteSettings? routeSettings,
- Offset? anchorPoint,
Implementation
Future<T?> showCDialog<T>({
required WidgetBuilder builder,
Cancellable? cancellable,
bool barrierDismissible = true,
Color? barrierColor = Colors.black54,
String? barrierLabel,
bool useSafeArea = true,
bool useRootNavigator = true,
RouteSettings? routeSettings,
Offset? anchorPoint,
// TraversalEdgeBehavior? traversalEdgeBehavior,
}) =>
d.showCDialog(
builder: builder,
context: this,
cancellable: cancellable,
barrierDismissible: barrierDismissible,
barrierColor: barrierColor,
barrierLabel: barrierLabel,
useSafeArea: useSafeArea,
useRootNavigator: useRootNavigator,
routeSettings: routeSettings,
anchorPoint: anchorPoint,
// traversalEdgeBehavior: traversalEdgeBehavior,
);