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