You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 26, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: firebase_auth_oauth/README.md
+17-9
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,12 @@
1
-
# firebase_auth_oauth
1
+
**Note:**
2
+
**This plugin is not actively maintained as I am not working with Flutter anymore. Feel free to submit PRs and I will do
3
+
my best to work on publishing them or reach out if you wish to be a maintainer.**
2
4
3
-
A Flutter plugin that makes it easy to perform OAuth sign in flows using FirebaseAuth. It also includes support for Sign in by Apple for Firebase.
4
-
This plugin supports Android, iOS and Web.
5
-
OAuth flows are performed by opening pop-up on top of the application to allow the user to authenticate or the native flow in the case of sign in by apple.
5
+
# firebase_auth_oauth
6
6
7
+
A Flutter plugin that makes it easy to perform OAuth sign in flows using FirebaseAuth. It also includes support for Sign
8
+
in by Apple for Firebase. This plugin supports Android, iOS and Web. OAuth flows are performed by opening pop-up on top
9
+
of the application to allow the user to authenticate or the native flow in the case of sign in by apple.
7
10
8
11
# Usage
9
12
@@ -15,9 +18,9 @@ OAuth flows are performed by opening pop-up on top of the application to allow t
15
18
dependencies:
16
19
flutter:
17
20
sdk: flutter
18
-
firebase_auth: ^2.0.0
19
-
firebase_core: ^1.3.0
20
-
firebase_auth_oauth: ^1.0.2
21
+
firebase_auth: ^3.0.1
22
+
firebase_core: ^1.4.0
23
+
firebase_auth_oauth: ^1.0.3
21
24
```
22
25
23
26
- Then in your project just call
@@ -27,13 +30,18 @@ dependencies:
27
30
FirebaseUser user = await FirebaseAuthOAuth().openSignInFlow("A provider ID", [list of scopes], {custom parameters map});
Copy file name to clipboardExpand all lines: firebase_auth_oauth/pubspec.yaml
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
name: firebase_auth_oauth
2
2
description: A Flutter plugin that makes it easy to perform OAuth sign in flows using FirebaseAuth. It also includes support for Sign in by Apple for Firebase.
0 commit comments