用TabBarView放置另一个小部件

时间:2019-04-07 11:46:32

标签: dart flutter

我的应用程序栏底部有一个TabBar,如下所示:

appBar: new AppBar(
            bottom:
                TabBar(
                  labelColor: Colors.black,
                  indicatorColor: Color(0xff2CB57D),
              tabs: [
                Tab(
                  text: uiLabels['tab1'][globals.currentLang],
                ),
                Tab(text: uiLabels['tab2'][globals.currentLang]),
              ],
            ),

然后在这样的身体中

 body: TabBarView(
            children: [
              PollsListPage(),
              PollsListPage(),
            ],
          ),

这工作得很好..问题是我想使用TabBarView在主体中添加Positioned小部件..

我该怎么做?

1 个答案:

答案 0 :(得分:0)

我发现我可以放置一个用于两者的主体部件,然后根据需要对其进行自定义..