gpt4 book ai didi

flutter - 多个导航栏 flutter

转载 作者:IT王子 更新时间:2023-10-29 06:57:45 25 4
gpt4 key购买 nike

谁能深入了解如何实现两个导航栏(一个自定义导航栏嵌入到位于底部导航栏的 TabView 中的 AppBar 中)?

例如: enter image description here

最佳答案

您可以像下面这样使用 appbar 的 bottom 属性。它将嵌套在您创建的底部标签栏中。

  @override
Widget build(BuildContext context) {
return DefaultTabController(
length: 3,
child: Scaffold(
appBar: AppBar(
title: Text('you can put your search here'),
bottom: Tabbar(
tabs:<Widget>[
Text('tab1'),
Text('tab2')
]
)
),
body: new TabBarView(
controller: _tabController,
children: <Widget>[
Screen1(),
Screen2(),
],
),
),
);
}

关于flutter - 多个导航栏 flutter ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55291432/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com