使用 PreferredSize
class TabBarTestView extends StatelessWidget {
const TabBarTestView({super.key});
@override
Widget build(BuildContext context) {
return DefaultTabController(
initialIndex: 1,
length: 2,
child: Scaffold(
appBar: const PreferredSize(
preferredSize: Size.fromHeight(kToolbarHeight),
child: TabBar(tabs: <Widget>[
Tab(text: "Tab 1"),
Tab(text: "Tab 2"),
]),
),
body: TabBarView(
children: [...],
),
));
}
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。