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"),
],
),
'Flutter > 기본' 카테고리의 다른 글
[Flutter] 세 자리마다 쉼표가 있는 TextField 구현하기 (0) | 2024.05.17 |
---|---|
[Flutter] 특수상황의 DateTime UTC -> UTC 변환 (0) | 2024.05.09 |
[Flutter] 디바이스 설정 언어 가져오기 (0) | 2024.04.18 |
[Flutter] 프로덕션 환경 vs 개발 환경 구별 방법 (0) | 2024.03.28 |
[Flutter] 웹 플랫폼 구별 방법 (0) | 2024.02.13 |