PageStack class

Manages a stack of pages. Used by PageStackNavigator.

Inheritance

Constructors

PageStack({List<PageContainer<Page>> routes = const <PageContainer>[]})
Manages a stack of pages.

Properties

hashCode int
The hash code for this object.
no setterinherited
hasListeners bool
Whether any listeners are currently registered.
no setterinherited
length int
The count of how many pages this stack will generate.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

addListener(VoidCallback listener) → void
Register a closure to be called when the object changes.
inherited
createPages() List<Page>
Generates a list of pages for the list of routes provided to this object.
dispose() → void
Discards any resources used by the object. After this is called, the object is not in a usable state and should be discarded (calls to addListener will throw after the object is disposed).
inherited
maybePop<T extends Object?>([T? result]) Future<bool>
Attempts to pops this page stack. Returns true if a route was successfully popped, otherwise false.
maybeSetChildPages(Iterable<PageContainer<Page>> pages) bool
Replaces the list of routes.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
notifyListeners() → void
Call all the registered listeners.
inherited
onPopPage(Route route, dynamic result, Routemaster routemaster) bool
Passed to Navigator widgets for the Navigator to inform this stack when a page is popped.
removeListener(VoidCallback listener) → void
Remove a previously registered closure from the list of closures that are notified when the object changes.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited