Forráskód Böngészése

调整通用页面的按钮 字体颜色

tongfeng 2 éve
szülő
commit
1f7ba2e083
1 módosított fájl, 2 hozzáadás és 2 törlés
  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),
         );
   }