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

PlatformAndroid

Google One Tap Sign In (Android)

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
110
pub points
81%
popularity

Publisher

unverified uploader

Google One Tap Sign In (Android)

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on google_one_tap_sign_in