如何在flutter中导航到新屏幕,同时仍然保持bottomNavigationBar

时间:2018-04-24 22:17:47

标签: android dart flutter

Hy Guys,我目前正在使用Flutter和我在个人资料页面中开发应用程序。我无法在不更改底部导航栏Something Like this

的情况下从配置文件页面导航到设置页面

注意:导航发生在同一个标​​签中。我不是要求如何在标签之间切换

1 个答案:

答案 0 :(得分:2)

<{3>}页面中的

是标签

这是Bottom Navigation Bar

new Scaffold(
      body: new TabBarView(
        children: <Widget>[new FirstTab(), new SecondTab(), new ThirdTab()],
        controller: controller,
      ),
bottomNavigationBar: new TabBar(
          tabs: <Tab>[
            new Tab(
              icon: new Icon(Icons.favorite),
            ),
            new Tab(
              icon: new Icon(Icons.adb),
            ),
            new Tab(
              icon: new Icon(Icons.airport_shuttle),
            ),
          ])