File tree 2 files changed +8
-8
lines changed
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -31,16 +31,16 @@ final providers = [
31
31
32
32
final result = await FlutterAuthUi.startUi(
33
33
items: providers,
34
- tosAndPrivacyPolicy: TosAndPrivacyPolicy(
34
+ tosAndPrivacyPolicy: const TosAndPrivacyPolicy(
35
35
tosUrl: "https://www.google.com",
36
36
privacyPolicyUrl: "https://www.google.com",
37
37
),
38
- androidOption: AndroidOption(
38
+ androidOption: const AndroidOption(
39
39
enableSmartLock: false, // default true
40
40
showLogo: true, // default false
41
41
overrideTheme: true, // default false
42
42
),
43
- emailAuthOption: EmailAuthOption(
43
+ emailAuthOption: const EmailAuthOption(
44
44
requireDisplayName: true, // default true
45
45
enableMailLink: false, // default false
46
46
handleURL: '',
@@ -52,13 +52,13 @@ final result = await FlutterAuthUi.startUi(
52
52
53
53
## Requirements
54
54
55
- - flutter 2 .0.0 or higher
56
- - [ firebase_auth] ( https://pub.dev/packages/firebase_auth ) 3.1 .0
55
+ - flutter 3 .0.0 or higher
56
+ - [ firebase_auth] ( https://pub.dev/packages/firebase_auth ) 3.3 .0
57
57
58
58
### Android
59
59
60
60
- minSdkVersion 21
61
- - compileSdkVersion 30
61
+ - compileSdkVersion 31
62
62
63
63
### iOS
64
64
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ The web implementation of `flutter_auth_ui`.
4
4
5
5
## Requirements
6
6
7
- - flutter 2 .0.0 or higher
8
- - [ firebase] ( https://pub.dev/packages/firebase ) 9.0.1
7
+ - flutter 3 .0.0 or higher
8
+ - [ firebase] ( https://pub.dev/packages/firebase ) 9.0.3
9
9
10
10
## Link
11
11
You can’t perform that action at this time.
0 commit comments