flutter_point_tab_bar 0.0.2 flutter_point_tab_bar: ^0.0.2 copied to clipboard
A tab bar widget for Flutter with point indicator.
flutter_point_tab_bar #
A tab bar widget with point indicator.
Demo #
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!