How can we integrate Google sign-in in Jetpack Com...
# compose
h
How can we integrate Google sign-in in Jetpack Compose?
Any information will be appreciated.
a
I’d assume there is no predefined composable of the official google login (not yet?). Jetpack compose is just a UI Toolkit. Since you can mix Views with Composables i’d just fall back to implementing the old SignInButton from Play Services or you could define a custom composable button which triggers the google login.
h
Thanks
j
You can find a sample of sign-in with Google via Firebase Authentication using Compose UI here Some caveats: • not updated to Compose beta • sample includes calls to our internal backend Nonetheless, maybe you’ll find it useful
h
Thanks