File tree 4 files changed +105
-114
lines changed
4 files changed +105
-114
lines changed Original file line number Diff line number Diff line change 1
1
# This file tracks properties of this Flutter project.
2
2
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3
3
#
4
- # This file should be version controlled.
4
+ # This file should be version controlled and should not be manually edited .
5
5
6
6
version:
7
- revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
8
- channel: stable
7
+ revision: "5dcb86f68f239346676ceb1ed1ea385bd215fba1"
8
+ channel: " stable"
9
9
10
10
project_type: app
11
11
12
12
# Tracks metadata for the flutter migrate command
13
13
migration:
14
14
platforms:
15
15
- platform: root
16
- create_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
17
- base_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
18
- - platform: macos
19
- create_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
20
- base_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
16
+ create_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
17
+ base_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
18
+ - platform: web
19
+ create_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
20
+ base_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
21
21
22
22
# User provided section
23
23
Original file line number Diff line number Diff line change @@ -23,17 +23,16 @@ class MyApp extends ConsumerWidget {
23
23
),
24
24
scaffoldBackgroundColor: Colors .grey[200 ],
25
25
dividerColor: Colors .grey[400 ],
26
- // https://github.com/firebase/flutterfire/blob/master/packages/firebase_ui_auth/doc/theming.md
27
26
elevatedButtonTheme: ElevatedButtonThemeData (
28
- style: ButtonStyle (
29
- backgroundColor: MaterialStateProperty . all < Color >( primaryColor) ,
30
- foregroundColor: MaterialStateProperty . all < Color >( Colors .white) ,
27
+ style: ElevatedButton . styleFrom (
28
+ backgroundColor: primaryColor,
29
+ foregroundColor: Colors .white,
31
30
),
32
31
),
33
32
outlinedButtonTheme: OutlinedButtonThemeData (
34
- style: ButtonStyle (
35
- backgroundColor: MaterialStateProperty . all < Color >( primaryColor) ,
36
- foregroundColor: MaterialStateProperty . all < Color >( Colors .white) ,
33
+ style: OutlinedButton . styleFrom (
34
+ backgroundColor: primaryColor,
35
+ foregroundColor: Colors .white,
37
36
),
38
37
),
39
38
floatingActionButtonTheme: const FloatingActionButtonThemeData (
You can’t perform that action at this time.
0 commit comments