build method
Build navigator
Implementation
@override
Widget build(BuildContext context) {
return Navigator(
key: navigatorKey,
pages: [
TabShellPage(child: _getTabViewBody(tabController.index, context)),
],
onPopPage: (route, result) {
notifyListeners();
return route.didPop(result);
},
);
}