GetNavigationExt extension

on

Properties

arguments → dynamic
give current arguments
no setter
bottomBarHeight double
The distance from the bottom edge to the first unpadded pixel, in physical pixels.
no setter
context BuildContext?
give access to currentContext
no setter
currentRoute String
give name from current route
no setter
defaultDialogTransitionCurve Curve
no setter
defaultDialogTransitionDuration Duration
no setter
defaultOpaqueRoute bool
no setter
defaultPopGesture bool
no setter
defaultTransition Transition?
no setter
defaultTransitionCurve Curve
no setter
defaultTransitionDuration Duration
no setter
deviceLocale Locale?
no setter
engine WidgetsBinding
The current null safe WidgetsBinding
no setter
focusScope FocusNode?
give access to FocusScope.of(context)
no setter
height double
The vertical extent of this size
no setter
iconColor Color?
give access to Theme.of(context).iconTheme.color
no setter
isBottomSheetOpen bool?
check if bottomsheet is open
no setter
isDarkMode bool
Check if dark mode theme is enable
no setter
isDialogOpen bool?
check if dialog is open
no setter
isOpaqueRouteDefault bool
check if default opaque route is enable
no setter
isOverlaysClosed bool
Returns true if there is no Snackbar, Dialog or BottomSheet open
no setter
isOverlaysOpen bool
Returns true if a Snackbar, Dialog or BottomSheet is currently OPEN
no setter
isPlatformDarkMode bool
Check if dark mode theme is enable on platform on android Q+
no setter
isPopGestureEnable bool
check if popGesture is enable
no setter
isSnackbarOpen bool
check if snackbar is open
no setter
key GlobalKey<NavigatorState>
no setter
keys Map<dynamic, GetDelegate>
no setter
mediaQuery MediaQueryData
give access to Mediaquery.of(context)
no setter
overlayContext BuildContext?
give access to current Overlay Context
no setter
parameters Map<String, String?>
getter/setter pair
pixelRatio double
The number of device pixels for each logical pixel.
no setter
previousRoute String
give name from previous route
no setter
rawRoute Route?
check a raw current route
no setter
rootController GetRootState
no setter
routing Routing
no setter
size Size
no setter
statusBarHeight double
The distance from the top edge to the first unpadded pixel, in physical pixels.
no setter
testMode bool
getter/setter pair
textScaleFactor double
The system-reported text scale.
no setter
textTheme TextTheme
give access to TextTheme.of(context)
no setter
theme ThemeData
give access to Theme.of(context)
no setter
width double
The horizontal extent of this size.
no setter
window SingletonFlutterWindow
The window to which this binding is bound.
no setter

Methods

addKey(GlobalKey<NavigatorState> newKey) GlobalKey<NavigatorState>?
appUpdate() → void
back<T>({T? result, bool closeOverlays = false, bool canPop = true, int? id}) → void
Navigation.popUntil() shortcut.

changeTheme(ThemeData theme) → void
changeThemeMode(ThemeMode themeMode) → void
close(int times, [int? id]) → void
Navigation.popUntil() (with predicate) shortcut .

closeAllSnackbars() → void
closeCurrentSnackbar() Future<void>
delegate<TDelegate extends RouterDelegate<TPage>, TPage>() → TDelegate?
Casts the stored router delegate to a desired type
forceAppUpdate() Future<void>
As a rule, Flutter knows which widget to update, so this command is rarely needed. We can mention situations where you use const so that widgets are not updated with setState, but you want it to be forcefully updated when an event like language change happens. using context to make the widget dirty for performRebuild() is a viable solution. However, in situations where this is not possible, or at least, is not desired by the developer, the only solution for updating widgets that Flutter does not want to update is to use reassemble to forcibly rebuild all widgets. Attention: calling this function will reconstruct the application from the sketch, use this with caution. Your entire application will be rebuilt, and touch events will not work until the end of rendering.
nestedKey(String? key) GetDelegate?
off<T>(Widget page(), {bool? opaque, Transition? transition, Curve? curve, bool? popGesture, int? id, String? routeName, dynamic arguments, List<BindingsInterface> bindings = const [], bool fullscreenDialog = false, bool preventDuplicates = true, Duration? duration, double gestureWidth(BuildContext context)?}) Future<T?>?
Navigation.pushReplacement() shortcut .

offAll<T>(Widget page(), {bool predicate(GetPage)?, bool? opaque, bool? popGesture, int? id, String? routeName, dynamic arguments, List<BindingsInterface> bindings = const [], bool fullscreenDialog = false, Transition? transition, Curve? curve, Duration? duration, double gestureWidth(BuildContext context)?}) Future<T?>?
Push a page and pop several pages in the stack until predicate returns true. predicate is optional
offAllNamed<T>(String newRouteName, {dynamic arguments, int? id, Map<String, String>? parameters}) Future<T?>?
Navigation.pushNamedAndRemoveUntil() shortcut.

offAndToNamed<T>(String page, {dynamic arguments, int? id, dynamic result, Map<String, String>? parameters}) Future<T?>?
Navigation.popAndPushNamed() shortcut.

offNamed<T>(String page, {dynamic arguments, int? id, Map<String, String>? parameters}) Future<T?>?
Navigation.pushReplacementNamed() shortcut.

offNamedUntil<T>(String page, bool predicate(GetPage)?, {int? id, dynamic arguments, Map<String, String>? parameters}) Future<T?>?
Navigation.pushNamedAndRemoveUntil() shortcut.

offUntil<T>(Widget page(), bool predicate(GetPage), [Object? arguments, int? id]) Future<T?>
removeRoute(String name, {int? id}) → void
Navigation.removeRoute() shortcut.

searchDelegate(dynamic k) GetDelegate
to<T>(Widget page(), {bool? opaque, Transition? transition, Curve? curve, Duration? duration, int? id, String? routeName, bool fullscreenDialog = false, dynamic arguments, List<BindingsInterface> bindings = const [], bool preventDuplicates = true, bool? popGesture, bool showCupertinoParallax = true, double gestureWidth(BuildContext context)?, bool rebuildStack = true, PreventDuplicateHandlingMode preventDuplicateHandlingMode = PreventDuplicateHandlingMode.reorderRoutes}) Future<T?>?
Navigation.push() shortcut.

toNamed<T>(String page, {dynamic arguments, dynamic id, bool preventDuplicates = true, Map<String, String>? parameters}) Future<T?>?
Navigation.pushNamed() shortcut.

until(bool predicate(GetPage), {int? id}) → void
Navigation.popUntil() shortcut.

updateLocale(Locale l) Future<void>