ソースを参照

Merge remote-tracking branch 'origin/master'

yangyang 2 年 前
コミット
8b3ee18632
1 ファイル変更2 行追加2 行削除
  1. 2 2
      lib/common/style/TitleBar.dart

+ 2 - 2
lib/common/style/TitleBar.dart

@@ -22,14 +22,14 @@ class TitleBar {
     return AppBar(
           title: Text(
             title,
-            style: TextStyle(color: GSYColors.primaryDarkValue, fontSize: 16),
+            style: TextStyle(color: Colors.white, fontSize: 16),
           ),
           centerTitle: true,
           leading: BackButton(),
           brightness: Brightness.light,
           backgroundColor: Color(0xFF4875EC),
           elevation: 0,
-          iconTheme: IconThemeData(color: GSYColors.primaryDarkValue),
+          iconTheme: IconThemeData(color: Colors.white),
         );
   }