Flutter how to remove bottom navigation with navigation

后端 未结 2 1609
生来不讨喜
生来不讨喜 2020-12-21 10:49

I want to remove all stacked routes and go back to the Auth page. My home page is like this.

class _HomeScreenState extends State {
               


        
2条回答
  •  孤城傲影
    2020-12-21 11:41

    The code

    Navigator.of(context).pushReplacement(MaterialPageRoute(builder: (context) => new AtuhScreen()));
    

    will be fixed by:

    Navigator.of(context, rootNavigator: true).pushReplacement(MaterialPageRoute(builder: (context) => new AtuhScreen()));
    

    The rootNavigator: true will get the highest root widget Scaffold or MaterialApp and avoid displaying the BottomNavigationBar.

提交回复
热议问题