didPush method
The Navigator pushed route
.
The route immediately below that one, and thus the previously active
route, is previousRoute
.
Implementation
@override
void didPush(Route<dynamic> route, Route<dynamic>? previousRoute) {
super.didPush(route, previousRoute);
// Notify listener of route change
onRouteChanged?.call(route, previousRoute);
if (ZenConfig.enableDebugLogs) {
ZenLogger.logDebug('Route pushed: ${route.settings.name ?? 'unnamed'}');
}
}