build method
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) {
// 抽屉路由栈也需要返回 Navigator,但不需要 PopScope
if (isDrawerStack) {
return Navigator(
key: navigatorKey,
pages: _pages.isEmpty ? [const MaterialPage(child: SizedBox.shrink())] : List.of(_pages),
onPopPage: _onPopPage,
);
}
// 主路由栈返回完整的 Navigator with PopScope
return PopScope(
canPop: false,
onPopInvokedWithResult: _onPopInvokedWithResult,
child: Navigator(
key: navigatorKey,
pages: List.of(_pages),
onPopPage: _onPopPage,
));
}