可选择隐藏 CupertinoTabBar

Fra*_* Vu 7 flutter flutter-layout

我实际上不确定这是颤振问题还是使用问题。无论哪种方式,我都想在某些特定屏幕中隐藏 CupertinoTabBar。想象一下我的应用程序小部件树是: MaterialApp - Login => To log in and navigate to Dashboard - Dashboard (is CupertinoTabScaffold with parallel bottom navigation bar by CupertinoTabBar) - A (a tab) => CameraPage => Submit Form (also have the bottom navigator bar) - B (a tab) => Foo - C (a tab) => Baa 一切正常,除了相机页面总是有底部导航栏。我尝试使用Navigator.of(context, rootNavigator: true)并且导航栏被隐藏,但是当我按下按钮导航到提交表单时,该页面也会丢失导航栏。我希望 CupertinoTabBar 有一个属性(比如说isShow),当isShow为 false 时,导航器将通过变换等移出屏幕。