TabBar下划线产生原因
我们在设置AppBar的时候,常常用到TabBar做嵌套导航,但是由于tabbar自带下划线,会使得界面的设计不美观
这是由于我们在 MaterialApp里面的theme主题管理中开启了 useMaterial3: true
,这会导致TabBar组件样式出现下划线
Tabbar取消下划线
解决的方案有两种
方案一
在Themedate
里面将useMaterial3
设置为false
theme: ThemeData(
fontFamily: "PingFang",
colorScheme: ColorScheme.fromSeed(seedColor: Colors.blueGrey),
useMaterial3: false,
)
方案二
往Themedate
里面添加一个属性tabBarTheme
,内容为const TabBarTheme(dividerColor: Colors.transparent)
文章来源:https://www.toymoban.com/news/detail-785116.html
theme: ThemeData(
fontFamily: "PingFang",
colorScheme: ColorScheme.fromSeed(seedColor: Colors.blueGrey),
useMaterial3: true,
// 去除TabBar底部线条
tabBarTheme: const TabBarTheme(dividerColor: Colors.transparent),
)
效果如下
文章来源地址https://www.toymoban.com/news/detail-785116.html
到了这里,关于Flutter TabBar下方白条隐藏的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!