@@ -18,24 +18,26 @@ class AppThemeLight extends AppTheme with ILightTheme {
1818 fontFamily: ApplicationConstants .FONT_FAMILY ,
1919 colorScheme: _appColorScheme,
2020 textTheme: textTheme (),
21- floatingActionButtonTheme:
22- ThemeData .light ().floatingActionButtonTheme.copyWith (),
21+ inputDecorationTheme: InputDecorationTheme (
22+ focusColor: Colors .black12,
23+ labelStyle: TextStyle (),
24+ enabledBorder: UnderlineInputBorder (borderSide: BorderSide (color: Colors .red)),
25+ border: UnderlineInputBorder (borderSide: BorderSide (color: Colors .red)),
26+ focusedBorder: UnderlineInputBorder (borderSide: BorderSide (color: Colors .red))),
27+ scaffoldBackgroundColor: Color (0xfff1f3f8 ),
28+ floatingActionButtonTheme: ThemeData .light ().floatingActionButtonTheme.copyWith (),
2329 tabBarTheme: tabBarTheme (),
2430 );
2531
2632 TabBarTheme tabBarTheme () {
2733 return TabBarTheme (
2834 labelPadding: insets.lowPaddingAll,
29- unselectedLabelStyle:
30- textThemeLight.headline4.copyWith (color: colorSchemeLight.red),
35+ unselectedLabelStyle: textThemeLight.headline4.copyWith (color: colorSchemeLight.red),
3136 );
3237 }
3338
3439 TextTheme textTheme () {
35- return TextTheme (
36- headline1: textThemeLight.headline1,
37- headline2: textThemeLight.headline2,
38- overline: textThemeLight.headline3);
40+ return TextTheme (headline1: textThemeLight.headline1, headline2: textThemeLight.headline2, overline: textThemeLight.headline3);
3941 }
4042
4143 ColorScheme get _appColorScheme {
@@ -51,7 +53,7 @@ class AppThemeLight extends AppTheme with ILightTheme {
5153 onSecondary: Colors .black, //x
5254 onSurface: Colors .white30,
5355 onBackground: Colors .black12,
54- onError: Colors .orange,
56+ onError: Color ( 0xffffc93c ), //xx
5557 brightness: Brightness .light);
5658 }
5759}
0 commit comments