doc/api/boost_container/NavigatorExtState-class.html
Inheritance
bucket→ RestorationBucket The RestorationBucket used for the restoration data of the RestorablePropertys registered to this mixin. [...] read-only, inherited context→ BuildContext The location in the tree where this widget builds. [...] read-only, inherited focusScopeNode→ FocusScopeNode The FocusScopeNode for the FocusScope that encloses the routes. final, inherited hashCode→ int The hash code for this object. [...] read-only, inherited mounted→ bool Whether this State object is currently in a tree. [...] read-only, inherited overlay→ OverlayState The overlay this navigator uses for its visual presentation. read-only, inherited restorationId→ String The restoration ID used for the RestorationBucket in which the mixin will store the restoration data of all registered properties. [...] read-only, inherited restorePending→ bool Whether restoreState will be called at the beginning of the next build phase. [...] read-only, inherited runtimeType→ Type A representation of the runtime type of the object. read-only, inherited userGestureInProgress→ bool Whether a route is currently being manipulated by the user, e.g. as during an iOS back gesture. [...] read-only, inherited userGestureInProgressNotifier→ ValueNotifier<bool> Notifies its listeners if the value of userGestureInProgress changes. final, inherited widget→ Navigator The current configuration. [...] read-only, inherited
build(BuildContext context) → Widget Describes the part of the user interface represented by this widget. [...]
inherited
canPop() → bool Whether the navigator can be popped. [...]
inherited
createTicker(TickerCallback onTick) → Ticker Creates a ticker with the given callback. [...]
inherited
deactivate() → void Called when this object is removed from the tree. [...]
@mustCallSuper, @protected, inherited
debugFillProperties(DiagnosticPropertiesBuilder properties) → void Add additional properties associated with the node. [...]
inherited
didChangeDependencies() → void Called when a dependency of this State object changes. [...]
inherited
didStartUserGesture() → void The navigator is being controlled by a user gesture. [...]
inherited
didStopUserGesture() → void A user gesture completed. [...]
inherited
didToggleBucket(RestorationBucket oldBucket) → void Called when bucket switches between null and non-null values. [...]
inherited
didUpdateRestorationId() → void Must be called when the value returned by restorationId changes. [...]
@protected, inherited
didUpdateWidget(covariant Navigator oldWidget) → void Called whenever the widget configuration changes. [...]
inherited
dispose() → void Called when this object is removed from the tree permanently. [...]
inherited
finalizeRoute(Route route) → void Complete the lifecycle for a route that has been popped off the navigator. [...]
inherited
initState() → void Called when this object is inserted into the tree. [...]
inherited
maybePop<T extends Object>([T result]) → Future<bool> Consults the current route's Route.willPop method, and acts accordingly, potentially popping the route as a result; returns whether the pop request should be considered handled. [...]
@optionalTypeArgs, inherited
noSuchMethod(Invocation invocation) → dynamic Invoked when a non-existent method or property is accessed. [...]
inherited
pop<T extends Object>([T result]) → void Pop the top-most route off the navigator. [...]
override
popAndPushNamed<T extends Object, TO extends Object>(String routeName, {TO result, Object arguments}) → Future<T> Pop the current route off the navigator and push a named route in its place. [...]
@optionalTypeArgs, inherited
popUntil(RoutePredicate predicate) → void Calls pop repeatedly until the predicate returns true. [...]
inherited
push<T extends Object>(Route<T> route) → Future<T> Push the given route onto the navigator. [...]
@optionalTypeArgs, inherited
pushAndRemoveUntil<T extends Object>(Route<T> newRoute, RoutePredicate predicate) → Future<T> Push the given route onto the navigator, and then remove all the previous routes until the predicate returns true. [...]
@optionalTypeArgs, inherited
pushNamed<T extends Object>(String routeName, {Object arguments}) → Future<T> Push a named route onto the navigator. [...]
@optionalTypeArgs, inherited
pushNamedAndRemoveUntil<T extends Object>(String newRouteName, RoutePredicate predicate, {Object arguments}) → Future<T> Push the route with the given name onto the navigator, and then remove all the previous routes until the predicate returns true. [...]
@optionalTypeArgs, inherited
pushReplacement<T extends Object, TO extends Object>(Route<T> newRoute, {TO result}) → Future<T> Replace the current route of the navigator by pushing the given route and then disposing the previous route once the new route has finished animating in. [...]
@optionalTypeArgs, inherited
pushReplacementNamed<T extends Object, TO extends Object>(String routeName, {TO result, Object arguments}) → Future<T> Replace the current route of the navigator by pushing the route named routeName and then disposing the previous route once the new route has finished animating in. [...]
@optionalTypeArgs, inherited
reassemble() → void Called whenever the application is reassembled during debugging, for example during hot reload. [...]
@mustCallSuper, @protected, inherited
registerForRestoration(RestorableProperty<Object> property, String restorationId) → void Registers a RestorableProperty for state restoration. [...]
@protected, inherited
removeRoute(Route route) → void Immediately remove route from the navigator, and Route.dispose it. [...]
inherited
removeRouteBelow(Route anchorRoute) → void Immediately remove a route from the navigator, and Route.dispose it. The route to be removed is the one below the given anchorRoute. [...]
inherited
replace<T extends Object>({required Route oldRoute, required Route<T> newRoute}) → void Replaces a route on the navigator with a new route. [...]
@optionalTypeArgs, inherited
replaceRouteBelow<T extends Object>({required Route anchorRoute, required Route<T> newRoute}) → void Replaces a route on the navigator with a new route. The route to be replaced is the one below the given anchorRoute. [...]
@optionalTypeArgs, inherited
restorablePopAndPushNamed<T extends Object, TO extends Object>(String routeName, {TO result, Object arguments}) → String Pop the current route off the navigator and push a named route in its place. [...]
@optionalTypeArgs, inherited
restorablePush<T extends Object>(RestorableRouteBuilder<T> routeBuilder, {Object arguments}) → String Push a new route onto the navigator. [...]
@optionalTypeArgs, inherited
restorablePushAndRemoveUntil<T extends Object>(RestorableRouteBuilder<T> newRouteBuilder, RoutePredicate predicate, {Object arguments}) → String Push a new route onto the navigator, and then remove all the previous routes until the predicate returns true. [...]
@optionalTypeArgs, inherited
restorablePushNamed<T extends Object>(String routeName, {Object arguments}) → String Push a named route onto the navigator. [...]
@optionalTypeArgs, inherited
restorablePushNamedAndRemoveUntil<T extends Object>(String newRouteName, RoutePredicate predicate, {Object arguments}) → String Push the route with the given name onto the navigator, and then remove all the previous routes until the predicate returns true. [...]
@optionalTypeArgs, inherited
restorablePushReplacement<T extends Object, TO extends Object>(RestorableRouteBuilder<T> routeBuilder, {TO result, Object arguments}) → String Replace the current route of the navigator by pushing a new route and then disposing the previous route once the new route has finished animating in. [...]
@optionalTypeArgs, inherited
restorablePushReplacementNamed<T extends Object, TO extends Object>(String routeName, {TO result, Object arguments}) → String Replace the current route of the navigator by pushing the route named routeName and then disposing the previous route once the new route has finished animating in. [...]
@optionalTypeArgs, inherited
restorableReplace<T extends Object>({required Route oldRoute, required RestorableRouteBuilder<T> newRouteBuilder, Object arguments}) → String Replaces a route on the navigator with a new route. [...]
@optionalTypeArgs, inherited
restorableReplaceRouteBelow<T extends Object>({required Route anchorRoute, required RestorableRouteBuilder<T> newRouteBuilder, Object arguments}) → String Replaces a route on the navigator with a new route. The route to be replaced is the one below the given anchorRoute. [...]
@optionalTypeArgs, inherited
restoreState(RestorationBucket oldBucket, bool initialRestore) → void Called to initialize or restore the RestorablePropertys used by the State object. [...]
inherited
setState(VoidCallback fn) → void Notify the framework that the internal state of this object has changed. [...]
@protected, inherited
toDiagnosticsNode({String name, DiagnosticsTreeStyle style}) → DiagnosticsNode Returns a debug representation of the object that is used by debugging tools and by DiagnosticsNode.toStringDeep. [...]
inherited
toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) → String A string representation of this object. [...]
inherited
toStringShort() → String A brief description of this object, usually just the runtimeType and the hashCode. [...]
inherited
unregisterFromRestoration(RestorableProperty<Object> property) → void Unregisters a RestorableProperty from state restoration. [...]
@protected, inherited
operator ==(Object other) → bool The equality operator. [...] inherited