build method
Build navigator
Implementation
@override
Widget build(BuildContext context) {
return Navigator(
key: _navigatorKey,
pages: [
MaterialPage(
child: TabShell(
tabs: tabs,
tabController: tabController,
logo: logo,
appBarMaxWidth: appBarMaxWidth,
),
),
],
onPopPage: (route, result) {
if (!route.didPop(result)) return false;
notifyListeners();
return true;
},
);
}