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) {
  super.didPop(route, previousRoute);
  MXPageInfo info = _stack.removeLast();
  info.pop(_stack);
  print('Pop $runtimeType $hashCode \nLast info:$info \nStack:$_stack');
  updateNativePanGestureState();
  if (_stack.length == 0) {
    if (MixStack.of(navigator!.context) != null) {
      MixStack.of(navigator!.context)!.stackExchange.popNative(pageAddress);
    }
  }
}