Flutter TabBar底部去掉下划线

在界面里面,TabBar有可能不要下划线的需求,看了一下TabBar的文档,并没有隐藏属性

const TabBar({
Key key,
@required this.tabs,
this.controller,
this.isScrollable = false,
this.indicatorColor,
this.indicatorWeight = 2.0,
this.indicatorPadding = EdgeInsets.zero,
this.indicator,
this.indicatorSize,
this.labelColor,
this.labelStyle,
this.labelPadding,
this.unselectedLabelColor,
this.unselectedLabelStyle,
this.dragStartBehavior = DragStartBehavior.start,
this.onTap,
})

我们只需要加上下面一行代码就OK了
indicator: const BoxDecoration(),
用最好的情绪做最好的自我。开心是一天,不开心也是一天,不如天天开心。活在当下,生活就为你歌唱。
原文地址:https://www.cnblogs.com/lukunlun/p/13267303.html