A tab bar widget with point indicator.
TabBar(
controller: _tabController,
indicator: PointTabIndicator(
position: PointTabIndicatorPosition.bottom,
color: Colors.white,
insets: EdgeInsets.only(bottom: 6),
),
tabs: tabList.map((item) {
return Tab(
text: item,
);
}).toList(),
)
Please run the app in the example/
folder to start playing!