didPush method

  1. @override
void didPush(
  1. Route? route,
  2. Route? previousRoute
)
override

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) {
  String? path = route?.settings.name;
  String? previousPath = previousRoute?.settings.name;
  if (path != null && path != '') {
    if (!_routeList.contains(path)) {
      _routeList.add(path);
    }
  }
  RRouter._print(
      'RRouter --> did push $path , previous $previousPath , current top $topPath');
}