Skip to content

hienlh/flutter_point_tab_bar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

10 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

flutter_point_tab_bar

A tab bar widget with point indicator.

Demo

Demo

Usage

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(),
)

Example

Please run the app in the example/ folder to start playing!