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 route, Route? previousRoute) {
// Only hide if navigating away from the PIP owner route
if (previousRoute == _pipOwnerRoute) {
PipAdView().hidePip();
}
}