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
Copy file name to clipboardExpand all lines: FirebaseSwiftUI/README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -770,7 +770,7 @@ Creates a new `AuthService` instance.
770
770
publicfuncwithEmailSignIn() -> AuthService
771
771
```
772
772
773
-
Enables email/password and email link authentication. Uses default behavior (navigates to email link view when tapped).
773
+
Enables email/password and email link authentication and will register an email button that is rendered in AuthPickerView (default Views) or can be rendered in custom Views by calling `AuthService.renderButtons()`. Uses default behavior (navigates to email link view when tapped).
Enables email authentication with a custom callback (i.e where to navigate when tapped) when the email button is tapped.
786
+
Enables email authentication and will register an email button that is rendered in AuthPickerView (default Views) or can be rendered in custom Views by calling `AuthService.renderButtons()`. Uses a custom callback (i.e where to navigate when tapped) when the email button is tapped.
787
787
788
788
**Example:**
789
789
@@ -803,7 +803,7 @@ authService
803
803
publicfuncwithPhoneSignIn() -> AuthService
804
804
```
805
805
806
-
Enables phone number authentication with SMS verification. Uses default behavior (navigates to enter phone number view when tapped).
806
+
Enables phone number authentication with SMS verification and will register a phone button that is rendered in AuthPickerView (default Views) or can be rendered in custom Views by calling `AuthService.renderButtons()`. Uses default behavior (navigates to enter phone number view when tapped).
Enables phone authentication with a custom callback (i.e where to navigate when tapped) when the phone button is tapped.
819
+
Enables phone authentication and will register a phone button that is rendered in AuthPickerView (default Views) or can be rendered in custom Views by calling `AuthService.renderButtons()`. Uses a custom callback (i.e where to navigate when tapped) when the phone button is tapped.
820
820
821
821
**Example:**
822
822
@@ -836,7 +836,7 @@ authService
836
836
publicfuncwithAppleSignIn() -> AuthService
837
837
```
838
838
839
-
Enables Sign in with Apple authentication.
839
+
Enables Sign in with Apple authentication and will register an apple button that is rendered in `AuthPickerView` (default Views) or can be rendered in custom Views by calling `AuthService.renderButtons()`.
840
840
841
841
**Example:**
842
842
@@ -854,7 +854,7 @@ authService
854
854
publicfuncwithGoogleSignIn() -> AuthService
855
855
```
856
856
857
-
Enables Sign in with Google authentication.
857
+
Enables Sign in with Google authentication and will register a Google button that is rendered in AuthPickerView (default Views) or can be rendered in custom Views by calling `AuthService.renderButtons()`.
Enables Sign in with Facebook authentication and will register a Facebook button that is rendered in AuthPickerView (default Views) or can be rendered in custom Views by calling `AuthService.renderButtons()`.
876
876
877
877
**Parameters:**
878
878
-`provider`: An instance of `FacebookProviderSwift()` for classic login or `FacebookProviderSwift(useClassicLogin: false)` for limited login.
@@ -893,7 +893,7 @@ authService
893
893
publicfuncwithTwitterSignIn() -> AuthService
894
894
```
895
895
896
-
Enables Sign in with Twitter authentication.
896
+
Enables Sign in with Twitter authentication and will register a Twitter button that is rendered in AuthPickerView (default Views) or can be rendered in custom Views by calling `AuthService.renderButtons()`.
Enables authentication with generic OAuth/OIDC providers.
914
+
Enables authentication with generic OAuth/OIDC providers and will register an OAuth button that is rendered in AuthPickerView (default Views) or can be rendered in custom Views by calling `AuthService.renderButtons()`.
0 commit comments