https://github.com/beerstorm-net/the_apple_sign_in
Sign in With Apple for Flutter. Native API bindings and a Flutter implementation of the sign in button.
https://github.com/beerstorm-net/the_apple_sign_in
apple-sign-in flutter flutter-plugin
Last synced: about 1 month ago
JSON representation
Sign in With Apple for Flutter. Native API bindings and a Flutter implementation of the sign in button.
- Host: GitHub
- URL: https://github.com/beerstorm-net/the_apple_sign_in
- Owner: beerstorm-net
- License: mit
- Created: 2021-03-06T22:13:37.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-01-22T08:16:31.000Z (over 1 year ago)
- Last Synced: 2025-04-06T11:02:32.575Z (about 2 months ago)
- Topics: apple-sign-in, flutter, flutter-plugin
- Language: Dart
- Homepage: https://pub.dev/packages/the_apple_sign_in
- Size: 185 KB
- Stars: 19
- Watchers: 1
- Forks: 4
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# The Apple Sign In - Flutter Plugin
**NB! `the_apple_sign_in` is the revisited and updated version of [flutter_apple_sign_in](https://github.com/tomgilder/flutter_apple_sign_in) by Tom Gilder (which is not maintained anymore...).**
**Thus, `the_apple_sign_in` will be maintained and updated by [beerstorm](https://github.com/beerstorm-net)**Before beginning, read related docs about [Sign In with Apple](https://developer.apple.com/sign-in-with-apple/).
## Platform support
This plugin currently supports only iOS platform. If needed, there's a [JavaScript framework](https://developer.apple.com/documentation/signinwithapplejs) for Android.
NB! I recommend using `iOS 13.x emulators`, because `iOS 14.x emulators` have issues with Apple SignIn. see details [from Apple forum >>](https://developer.apple.com/forums/thread/651533?answerId=675235022#675235022)
## Implementing
1. [Configure your app](https://developer.apple.com/documentation/xcode/configuring-sign-in-with-apple) in Xcode to add the "Sign In with Apple" capability
2. See [the example app](https://github.com/beerstorm-net/the_apple_sign_in/blob/master/example/lib/main.dart) to see how the API works## FAQs
### User information is null after signing in
User details such as email and name are only provided the first time a user signs in to your app with Sign in With Apple. This isn't a limitation of the plugin, it's [how the native SDK functions](https://forums.developer.apple.com/thread/121496).
On signing in again, all the properties are null. You need to store them the first time you login.
For testing purposes you can revoke the credentials to sign in again:
1. Sign in to https://appleid.apple.com/account/manage
2. Go to "Apps & Websites Using Apple ID" and click "Manage"
3. Select your app
4. Click "Stop Using Apple ID"### I'm getting errors when trying to build the project
Sign In with Apple requires Xcode 11, as it requires the iOS 13 SDK. Make sure you're up-to-date.
## To Do
* Support for [PasswordProvider](https://developer.apple.com/documentation/authenticationservices/asauthorizationpasswordprovider)