Package-level declarations

Types

Link copied to clipboard

Enum class for the type of Google Dialog

Link copied to clipboard
sealed interface NativeSignInResult

Represents the response of a Native SignIn

Link copied to clipboard
class NativeSignInState(serializer: SupabaseSerializer)

Represents the state of a Native Auth flow

Link copied to clipboard
sealed interface NativeSignInStatus

Represents the status of a Native Auth flow

Functions

Link copied to clipboard
actual fun ComposeAuth.rememberSignInWithApple(onResult: (NativeSignInResult) -> Unit, fallback: suspend () -> Unit): NativeSignInState

Composable function that implements Native Apple Auth.

actual fun <Error class: unknown class>.rememberSignInWithApple(    onResult: (<Error class: unknown class>) -> Unit,     fallback: suspend () -> Unit): <Error class: unknown class>

Composable function that implements Native Apple Auth.

expect fun ComposeAuth.rememberSignInWithApple(    onResult: (NativeSignInResult) -> Unit,     fallback: suspend () -> Unit = { fallbackLogin(Apple) }): NativeSignInState

Composable function that implements Native Apple Auth.

actual fun ComposeAuth.rememberSignInWithApple(onResult: (NativeSignInResult) -> Unit, fallback: suspend () -> Unit): NativeSignInState

Composable for Apple login with default behavior

Link copied to clipboard
actual fun ComposeAuth.rememberSignInWithGoogle(    onResult: (NativeSignInResult) -> Unit,     type: GoogleDialogType,     fallback: suspend () -> Unit): NativeSignInState

Composable function that implements Native Google Auth.

actual fun <Error class: unknown class>.rememberSignInWithGoogle(    onResult: (<Error class: unknown class>) -> Unit,     type: <Error class: unknown class>,     fallback: suspend () -> Unit): <Error class: unknown class>

Composable function that implements Native Google Auth.

expect fun ComposeAuth.rememberSignInWithGoogle(    onResult: (NativeSignInResult) -> Unit = {},     type: GoogleDialogType = GoogleDialogType.DIALOG,     fallback: suspend () -> Unit = { fallbackLogin(Google) }): NativeSignInState

Composable function that implements Native Google Auth.

actual fun ComposeAuth.rememberSignInWithGoogle(    onResult: (NativeSignInResult) -> Unit,     type: GoogleDialogType,     fallback: suspend () -> Unit): NativeSignInState

Composable function that implements Native Google Auth.