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) {
super.didPush(route, previousRoute);
if (!InqvineSimulatorHandler.instance.isEnabled) {
return;
}
// //* Load the correct mock actions if required
final bool hasSimRoute = routes.any((SimulatableGoRoute element) => element.route.path == route.settings.name);
if (!hasSimRoute) {
'Failed to find simulated route for ${route.settings.name}'.logError();
return;
}
InqvineSimulatorHandler.instance.currentRoute = routes.firstWhere((SimulatableGoRoute element) => element.route.path == route.settings.name);
'Set current route to ${InqvineSimulatorHandler.instance.currentRoute?.route.path}'.logInfo();
FakeActionPlugin.fakeActionController.sink.add(null);
}