firebase_dart_flutter_auth_apple 0.0.1+5
firebase_dart_flutter_auth_apple: ^0.0.1+5 copied to clipboard
Provides a `firebase_dart` auth handler for sign in with Apple using the native Apple API
Provides a firebase_dart
auth handler for sign in with Apple using the native Apple API.
Usage #
Initialize FirebaseDartFlutter
with the auth handler.
await FirebaseDartFlutter.setup(
socialAuthHandlers: [
AppleAuthHandler(),
],
);
Start sign in process:
await auth.signInWithPopup(OAuthProvider('apple.com'));