Flutter/기본

[Flutter] TabBar Customizing Design 모음

주톨 2024. 4. 26. 13:56
728x90

 

 

 

1.

 

TabBar(
  labelStyle: TextStyle(
    fontSize: 15,
    height: 1.33,
    fontWeight: FontWeight.w700,
  ),
  labelColor: Colors.black,
  unselectedLabelColor: Colors.grey,
  dividerHeight: 1,
  dividerColor: Colors.grey,
  indicatorWeight: 2,
  indicatorSize: TabBarIndicatorSize.tab,
  indicatorColor: Colors.black,
  controller: tabController,
  tabs: [
    Tab(text: "1"),
    Tab(text: "2"),
    Tab(text: "3"),
  ],
),