flutter_point_tab_bar 0.0.1 flutter_point_tab_bar: ^0.0.1 copied to clipboard
A new Flutter package.
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!