bizz84 / nested-navigation-demo-flutter

Nested navigation with BottomNavigationBar
https://codewithandrea.com/
MIT License
616 stars 139 forks source link

How to navigate other routes from nested screen ? #23

Closed imjeen closed 2 years ago

imjeen commented 2 years ago

There are some screen page under the root of app,
and they are not in tabs. Such as Login Screen.

I Try to try to navigate to these screen page by the way: Navigator.of(context).pushNamed('/login'); but it cannot.

imjeen commented 2 years ago

Finally, I found a way to resolve it.

Navigator.of(context, rootNavigator: true)
    .pushNamedAndRemoveUntil(
  LoginScreen.routeName,
  (_) => false,
);