@@ -3,25 +3,34 @@ import 'package:flutter/material.dart';
33class GSYColors {
44 static const String welcomeMessage = "Welcome To Flutter" ;
55
6- static const int _PrimaryValue = 0xFF24292E ;
7- static const int _PrimaryLightValue = 0xFF42464b ;
8- static const int _PrimaryDarkValue = 0xFF121917 ;
6+ static const int primaryValue = 0xFF24292E ;
7+ static const int primaryLightValue = 0xFF42464b ;
8+ static const int primaryDarkValue = 0xFF121917 ;
9+
10+ static const int cardWhite = 0xFFFFFFFF ;
11+
12+ static const int textWhite = 0xFFFFFFFF ;
913
1014 static const MaterialColor primarySwatch = const MaterialColor (
11- _PrimaryValue ,
15+ primaryValue ,
1216 const < int , Color > {
13- 50 : const Color (_PrimaryLightValue ),
14- 100 : const Color (_PrimaryLightValue ),
15- 200 : const Color (_PrimaryLightValue ),
16- 300 : const Color (_PrimaryLightValue ),
17- 400 : const Color (_PrimaryLightValue ),
18- 500 : const Color (_PrimaryValue ),
19- 600 : const Color (_PrimaryDarkValue ),
20- 700 : const Color (_PrimaryDarkValue ),
21- 800 : const Color (_PrimaryDarkValue ),
22- 900 : const Color (_PrimaryDarkValue ),
17+ 50 : const Color (primaryLightValue ),
18+ 100 : const Color (primaryLightValue ),
19+ 200 : const Color (primaryLightValue ),
20+ 300 : const Color (primaryLightValue ),
21+ 400 : const Color (primaryLightValue ),
22+ 500 : const Color (primaryValue ),
23+ 600 : const Color (primaryDarkValue ),
24+ 700 : const Color (primaryDarkValue ),
25+ 800 : const Color (primaryDarkValue ),
26+ 900 : const Color (primaryDarkValue ),
2327 },
2428 );
2529}
2630
2731class GSYConstant {}
32+
33+
34+ class GSYStrings {
35+ static const String login_text = "登录" ;
36+ }
0 commit comments