Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(ui_auth): improve phone.md #9774

Merged
merged 4 commits into from Nov 22, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS
Expand Up @@ -59,3 +59,4 @@ Alessandro Rossi <alexodus71@gmail.com>
Timur Dyushaliev <timurdyushaliev@gmail.com>
Maaku Saito <maaku0810@gmail.com>
Markus Köhne <markus@koehne.dev>
Max Steffen <git@max-steffen.dev>
4 changes: 2 additions & 2 deletions packages/firebase_ui_auth/doc/providers/phone.md
Expand Up @@ -10,7 +10,7 @@ enabled in the [Firebase Console](https://console.firebase.google.com/project/_/
Next, follow the [Setup Instructions](https://firebase.google.com/docs/auth/flutter/phone-auth) to configure Phone Authentication for your
platforms.

Configure email provider:
Configure phone provider:

```dart
import 'package:firebase_core/firebase_core.dart';
Expand All @@ -20,7 +20,7 @@ void main() {
await Firebase.initializeApp(options: DefaultFirebaseOptions.currentPlatform);

FirebaseUIAuth.configureProviders([
PhoneAuthProvider(),,
PhoneAuthProvider(),
// ... other providers
]);
}
Expand Down