didPop method
The Navigator popped route
.
The route immediately below that one, and thus the newly active
route, is previousRoute
.
Implementation
@override
void didPop(Route<dynamic> route, Route<dynamic>? previousRoute) {
_topRoute = previousRoute;
if (route is PageRoute) {
_transitionAnimation = route.animation;
_screenNames.remove(route.settings.name);
} else {
_screenNames.removeWhere((e) => e == ":popup");
}
setAndTaggingScreenName();
super.didPop(route, previousRoute);
}