SignInClientTrustView
fun SignInClientTrustView(factor: Factor, modifier: Modifier = Modifier, clerkTheme: ClerkTheme? = null, onAuthComplete: () -> Unit)
A composable that displays the client trust verification view.
This view is shown when the user is signing in from a new or untrusted device and needs to complete an additional verification step. It displays a warning message explaining why verification is needed, followed by the code input for verification.
Based on the strategy of the provided factor, this composable will delegate rendering to SignInFactorCodeView for phone code or email code verification, or SignInGetHelpView for unsupported strategies.
Parameters
factor
The factor to be verified for client trust.
modifier
The Modifier to be applied to the view.
clerkTheme
Optional theme override for customization.
onAuthComplete
Callback invoked when authentication is complete.