didPop method

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

The Navigator popped route.

The route immediately below that one, and thus the newly active route, is previousRoute.

Implementation

@override
void didPop(Route<dynamic>? route, Route<dynamic>? previousRoute) {
  String? path = route?.settings.name;
  String? previousPath = previousRoute?.settings.name;
  if (path != null && path != '') {
    if (_routeList.contains(path)) {
      int index = _routeList.lastIndexOf(path);
      if (index > 0) _routeList.removeAt(index);
    }
  }
  if (previousPath != null && previousPath != '') {
    if (!_routeList.contains(previousPath)) {
      _routeList.add(previousPath);
    }
  }
  RRouter._print(
      'RRouter --> did pop $path , previous $previousPath , current top $topPath');
}