accentColor8.1 Flutter 플러터에서 AppBar를 변경하지 않고 TabBar의 배경색을 변경하는 방법은 무엇인가요?, How to change background color of TabBar without changing the AppBar in flutter? 질문 TabBar의 배경색을 변경하는 방법은 있지만 AppBar은 변경하지 않을 수 있을까요? TabBar에는 background 속성이 없는데, 해결 방법이 있을까요? 답변 TabBar의 색상을 변경하려면 Theme primaryColor를 변경하면 됩니다: return MaterialApp( theme: ThemeData( brightness: Brightness.light, // tabBarTheme 추가 tabBarTheme: const TabBarTheme( labelColor: Colors.pink[800], labelStyle: TextStyle(color: Colors.pink[800]), // 텍스트 색상 indicator: UnderlineTabIndicator( // 인디케이터(밑줄).. 2023. 10. 3. 이전 1 다음