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) {
Logger.d("didPush in smartechPX");
super.didPush(route, previousRoute);
PxContextAware.instance.currentElement = route.navigator?.context as Element;
PxAnchorWidgetTracker.instance.onScreenChange();
}