|
@@ -22,7 +22,7 @@ class MyApp extends StatelessWidget {
|
|
|
// Notice that the counter didn't reset back to zero; the application
|
|
|
// is not restarted.
|
|
|
primarySwatch: Colors.blue,
|
|
|
- // This makes the visual density adapt to the platform that you run
|
|
|
+ // This makes the visual density adapt to the platform that you ru
|
|
|
// the app on. For desktop platforms, the controls will be smaller and
|
|
|
// closer together (more dense) than on mobile platforms.
|
|
|
visualDensity: VisualDensity.adaptivePlatformDensity,
|
|
@@ -99,7 +99,7 @@ class _MyHomePageState extends State<MyHomePage> {
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
children: <Widget>[
|
|
|
Container(
|
|
|
- color: JXColors.Color_F0F0F0,
|
|
|
+ color: JXColors.kF0F0F0,
|
|
|
alignment: Alignment.center,
|
|
|
padding: EdgeInsets.fromLTRB(12.0, 4.0, 12.0, 4.0),
|
|
|
height: 50.0,
|
|
@@ -114,7 +114,7 @@ class _MyHomePageState extends State<MyHomePage> {
|
|
|
Expanded(
|
|
|
child: TextField(
|
|
|
obscureText: true,
|
|
|
- cursorColor: JXColors.Color_1F2529,
|
|
|
+ cursorColor: JXColors.k1F2529,
|
|
|
decoration: InputDecoration(
|
|
|
border: OutlineInputBorder(),
|
|
|
labelText: 'Password',
|
|
@@ -140,8 +140,8 @@ class _MyHomePageState extends State<MyHomePage> {
|
|
|
print('新建会员');
|
|
|
},
|
|
|
padding: EdgeInsets.all(0),
|
|
|
- color: JXColors.Color_FFFFFF,
|
|
|
- textColor: JXColors.Color_1F2529,
|
|
|
+ color: JXColors.kFFFFFF,
|
|
|
+ textColor: JXColors.k1F2529,
|
|
|
child: const Text('新建会员', style: TextStyle(fontSize: 14)),
|
|
|
),
|
|
|
),
|
|
@@ -151,8 +151,8 @@ class _MyHomePageState extends State<MyHomePage> {
|
|
|
print('会员列表');
|
|
|
},
|
|
|
padding: EdgeInsets.all(0),
|
|
|
- color: JXColors.Color_1F2529,
|
|
|
- textColor: JXColors.Color_FFFFFF,
|
|
|
+ color: JXColors.k1F2529,
|
|
|
+ textColor: JXColors.kFFFFFF,
|
|
|
child: const Text('会员列表', style: TextStyle(fontSize: 14)),
|
|
|
),
|
|
|
),
|