Page<T> constructor
Page<T> ({
- required String name,
- required GetPageBuilder page,
- String? title,
- double gestureWidth(
- BuildContext context
- bool maintainState = true,
- Curve curve = Curves.linear,
- Alignment? alignment,
- Map<
String, String> ? parameters, - bool opaque = true,
- Duration? transitionDuration,
- bool? popGesture,
- Bindings? binding,
- List<
Bindings> bindings = const [], - Transition? transition,
- CustomTransition? customTransition,
- bool fullscreenDialog = false,
- List<
GetPage> children = const <GetPage>[], - List<
GetMiddleware> ? middlewares, - GetPage? unknownRoute,
- Object? arguments,
- bool showCupertinoParallax = true,
- bool preventDuplicates = true,
Implementation
Page({
required super.name,
required super.page,
super.title,
super.participatesInRootNavigator,
super.gestureWidth,
super.maintainState,
super.curve,
super.alignment,
super.parameters,
super.opaque,
super.transitionDuration,
super.popGesture,
super.binding,
super.bindings,
super.transition,
super.customTransition,
super.fullscreenDialog,
super.children,
super.middlewares,
super.unknownRoute,
super.arguments,
super.showCupertinoParallax,
super.preventDuplicates,
});