Flutter TabBar去除水波纹
2020-11-25 本文已影响0人
Lcc不想混_b503
在TabBar外层套一个 Theme,并设置ThemeData即可。
实例代码:
Theme(
data: ThemeData(
splashColor: Colors.transparent,
highlightColor: Colors.transparent,
),
child: TabBar(
controller: _tabController,
isScrollable: true,
indicatorSize: TabBarIndicatorSize.label,
tabs: _tabsWidget(),
),
)