Flutter隐藏底部导航栏

Flutter hide bottom navigation bar

我正在使用 PersistentBottomNavBar 包,有没有办法隐藏某些页面上的底部导航栏?

感谢您的帮助。

我认为您需要导航到另一个页面或隐藏导航栏并在需要时再次显示。

可以设置withNavBar:false默认为true navigator-functions

当您推送到新闻屏幕而不是使用 Navigator.push() 时,请使用以下导航器 pushNewScreen() 如果您不想将推送屏幕中的底部导航栏设置为 withNavBar:false

pushNewScreen(
        context,
        screen: MainScreen(),
        withNavBar: false, 
        pageTransitionAnimation: PageTransitionAnimation.cupertino,
    );