build method

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

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);
    },
  );
}