F
02/08/2025, 2:47 PMsupabase.composeAuth.rememberSignInWithGoogle(
onResult = { result -> //optional error handling
when (result) {
is NativeSignInResult.Success -> {}
is NativeSignInResult.ClosedByUser -> {}
is NativeSignInResult.Error -> println(result.message)
is NativeSignInResult.NetworkError -> {}
}
},
)
This always results in NativeSignInResult.ClosedByUser, without user canceling the dialog.Ume Channel
02/09/2025, 12:49 PMF
02/09/2025, 5:33 PMF
02/09/2025, 9:54 PM