此处使用ThemeData进行局部控件的颜色设置,splashColor
设置的是水波纹效果,highlightColor
设置的是选择的高亮效果。将两个颜色都设置成透明色,就达到了我们要的效果。
注意⚠️:使用ThemeData进行设置时候AppBar文字的颜色labelColor
和未选中的文字颜色unselectedLabelColor
需要根据自己的需求进行设置下
Container(
height: 40,
child: Theme(child: TabBar(
tabs: _tabs.map((e) => Text(e)).toList(),
controller: _tabController,
indicatorColor: WMSColors.accentColor,
indicatorSize: TabBarIndicatorSize.label,
labelColor: WMSColors.blackCommon,
unselectedLabelColor: WMSColors.blackCommon,
labelStyle: TextStyle(fontSize: 16),
onTap: (index) {
//点击事件
},
),data: ThemeData(splashColor: Colors.transparent,highlightColor: Colors.transparent,),),
),