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 route, Route? previousRoute) {
super.didPop(route, previousRoute);
// 设置当前页路由
if (previousRoute != null) {
NavigatorUtilsCore().setCurrentRoute(previousRoute.settings.name);
}
}