didPushRoute method
Called when the host tells the app to push a new route onto the navigator.
Implementation
@protected
@override
@mustCallSuper
Future<bool> didPushRoute(String route) async {
/// Observers are expected to return true if they were able to
/// handle the notification. Observers are notified in registration
/// order until one returns true.
///
/// This method exposes the `pushRoute` notification from
/// No 'setState()' functions are allowed to fully function at this point.
_rebuildAllowed = false;
for (final listener in _beforeList) {
await listener.didPushRoute(route);
}
for (final con in _controllerList) {
await con.didPushRoute(route);
}
for (final listener in _afterList) {
await listener.didPushRoute(route);
}
_rebuildAllowed = true;
if (_rebuildRequested || _inTester) {
_rebuildRequested = false;
/// Perform a 'rebuild' if requested.
refresh();
}
return false;
}