build method

  1. @override
Widget build(
  1. BuildContext context
)
override

Called by the Router to obtain the widget tree that represents the current state.

This is called whenever the Futures returned by setInitialRoutePath, setNewRoutePath, or setRestoredRoutePath complete as well as when this notifies its clients (see the Listenable interface, which this interface includes). In addition, it may be called at other times. It is important, therefore, that the methods above do not update the state that the build method uses before they complete their respective futures.

Typically this method returns a suitably-configured Navigator. If you do plan to create a navigator, consider using the PopNavigatorRouterDelegateMixin. If state restoration is enabled for the Router using this delegate, consider providing a non-null Navigator.restorationScopeId to the Navigator returned by this method.

This method must not return null.

The context is the Router's build context.

Implementation

@override
Widget build(BuildContext context) {
  final pages = getHistoryPages();
  if (pages.length == 0) return SizedBox.shrink();
  return Navigator(
    key: navigatorKey,
    pages: pages,
    onPopPage: (route, result) {
      ///监听Navigator pop 只有触发 [Navigator.pop]时才会回调,一般为material下的默认导航返回
      if (!route.didPop(result)) {
        return false;
      }
      if (_canPop()) {
        pop(result);
        return true;
      }
      return false;
    },
  );
}