我的应用程序栏底部有一个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小部件..
我该怎么做?
答案 0 :(得分:0)
我发现我可以放置一个用于两者的主体部件,然后根据需要对其进行自定义..