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 route, Route? previousRoute) {
  super.didPush(route, previousRoute);
  if (!kIsMPFlutter) {
    return;
  }
  currentRoute = route;
  if (!route.isFirst) {
    (js.context["FlutterHostView"]["shared"] as js.JsObject)
        .callMethod("requireCatchBack", [true]);
  } else {
    (js.context["FlutterHostView"]["shared"] as js.JsObject)
        .callMethod("requireCatchBack", [false]);
  }
  notifyListeners();
  _scheduleForcedFrame10Times();
}