google_one_tap_sign_in 1.0.7 copy "google_one_tap_sign_in: ^1.0.7" to clipboard
google_one_tap_sign_in: ^1.0.7 copied to clipboard

PlatformAndroid

Google One Tap Sign In (Android)

1.0.7 #

  • Maintenance & Fixing
    • Update Kotlin and Android Gradle version
    • add exception, handle support platform

1.0.3 #

  • Update Example

1.0.2 #

  • Update CHANGELOG.md

1.0.1 #

  • Update README.md

1.0.0 #

  • Add new features 'GoogleOneTapSignIn.handleSignIn(webClientId: "[YOUR-CLIENT-ID]")'
      void _onSignInWithHandle() async {
        var result = await GoogleOneTapSignIn.handleSignIn(webClientId: _webClientId);
      
        if (result.isTemporaryBlock) {
          // TODO: Tell your users about this status
          print("Temporary BLOCK");
        }
      
        if (result.isCanceled) {
          // TODO: Tell your users about this status
          print("Canceled");
        }
      
        if (result.isFail) {
          // TODO: Tell your users about this status
        }
      
        if (result.isOk) {
          // TODO: Whatever you do with [SignInResult] data
          print("OK");
          print("Id Token : ${result.data?.idToken ?? "-"}");
          print("Email : ${result.data?.username ?? "-"}");
        }
      }
    

0.1.1 #

  • Update the Changelog

0.1.0 #

  • Minor bug fixing 'onActivityResult' method

0.0.2 #

  • Update README.md

0.0.1 #

  • Initial Release
32
likes
140
points
105
downloads

Publisher

unverified uploader

Weekly Downloads

Google One Tap Sign In (Android)

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on google_one_tap_sign_in