flutterTabBar改变tab⼤⼩
被选中的tab变⼤
textstyleTabBar(
tabs: _tab.map((f) {
return Text(
f,
style: TextStyle(color: Colors.white), // 设置tab⽂字的样式,优先级最⾼
);
}).toList(),
controller: _controller1,
indicatorColor: ange, // 下⾯那条横线的颜⾊
indicatorSize: TabBarIndicatorSize.label, // 指⽰器是类型, label是这样的,tab是沾满整个tab的空间的                        isScrollable: true, // 是否可以滑动
indicatorWeight: 3.0, // 指⽰器的⾼度/厚度
unselectedLabelStyle: TextStyle(fontSize: 16), // 未选择样式
labelStyle: TextStyle( fontSize: 20, height: 2), // 选择的样式
onTap: _tabChange
),

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。