본문 바로가기

AppBar4.2

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.
Flutter 플러터 - AppBar가 없을 때 상태 표시줄 색상을 어떻게 설정하는 방법, Flutter - How to set status bar color when AppBar not present 질문 AppBar가 없을 때 상태 표시줄 색상을 설정하는 방법. 이렇게 시도해 봤지만 작동하지 않습니다. Widget build(BuildContext context) { SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.dark); return new Scaffold( body: new Container( color: UniQueryColors.colorBackground, child: new ListView.builder( itemCount: 7, itemBuilder: (BuildContext context, int index){ if (index == 0){ return addTopInfoSection(); } }, ), ), ); } 출력은 .. 2023. 8. 11.