SignInState
Handle returned by the rememberXxxSignInState composables. Wire launch to any clickable and observe isInProgress for loading UI.
val googleSignIn = rememberGoogleSignInState(onResult = { user -> ... })
Button(onClick = { googleSignIn.launch() }, enabled = !googleSignIn.isInProgress) {
Text("Sign in with Google")
}Content copied to clipboard
Inheritors
Properties
Link copied to clipboard
True while a sign-in flow started by launch is still running.