sign_in_with_apple 1.0.0 copy "sign_in_with_apple: ^1.0.0" to clipboard
sign_in_with_apple: ^1.0.0 copied to clipboard

outdated

Flutter bridge to initiate Sign in with Apple (currently iOS only). Includes support for keychain entries as well as sign in with an Apple ID.

Sign in With Apple #

Flutter bridge to iOS's Sign in with Apple feature.

Supports login via an Apple ID as well as credentials saved in the user's keychain.

Example Usage #

SignInWithAppleButton(
    onPressed: () async {
        final credentials = await SignInWithApple.requestCredentials();
        
        if (credentials is AuthorizationCredentialAppleID) {
            /// send credentials to your server to create a session
            /// after they have been validated with Apple
        } else if (credentials is AuthorizationCredentialPassword) {
            /// Login the user using username/password combination
        }
    },
);


Flow #

1747
likes
0
pub points
100%
popularity

Publisher

verified publisheraboutyou.com

Flutter bridge to initiate Sign in with Apple (currently iOS only). Includes support for keychain entries as well as sign in with an Apple ID.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, meta

More

Packages that depend on sign_in_with_apple