如何在 Flutter 中为未选中的选项卡添加下划线?
How to add underline to unselected tabs in Flutter?
如何为未选中的标签添加下划线,如下所示:
你可以看到未选中的标签是灰色的,选中的是蓝色的。我想要根据我的应用程序颜色使用未选中标签的未划线颜色。
您可以使用制表符来实现这一点
Scaffold(
appBar: AppBar(
bottom: TabBar(
tabs: [
Tab(text:"About"), // you can specify pages here if you want
Tab(text:"Reg"),
Tab(text:"Services"),
],
),
title: Text('Tabs Demo'),
),
body: TabBarView(
children: [
Text("1"),
Text("2"),
Text("3"),
],
),
),
如何为未选中的标签添加下划线,如下所示:
你可以看到未选中的标签是灰色的,选中的是蓝色的。我想要根据我的应用程序颜色使用未选中标签的未划线颜色。
您可以使用制表符来实现这一点
Scaffold(
appBar: AppBar(
bottom: TabBar(
tabs: [
Tab(text:"About"), // you can specify pages here if you want
Tab(text:"Reg"),
Tab(text:"Services"),
],
),
title: Text('Tabs Demo'),
),
body: TabBarView(
children: [
Text("1"),
Text("2"),
Text("3"),
],
),
),