TabIndicator constructor
const
TabIndicator({
- BorderSide borderSide = const BorderSide(width: 2.0, color: Colors.white),
- TabController? tabController,
- double indicatorBottom = 0.0,
- double indicatorWidth = 4,
- double indicatorHeight = 4,
Implementation
const TabIndicator({
// 设置下标高度、颜色
this.borderSide = const BorderSide(width: 2.0, color: Colors.white),
this.tabController,
this.indicatorBottom = 0.0,
this.indicatorWidth = 4,
this.indicatorHeight = 4,
});