Skip to content

Confirm Biometric Screen

Introduction

This screen allows the user to unlock the mobile application using their biometric information after onboarding. Inside the flow component, this screen will come first if biometric authentication was enabled during onboarding.

Confirm Biometric Screen

Examples

val screen = ConfirmBiometricScreen(getTargetContext())
val css = ConfirmBiometricScreenSettings.Builder()
.setPasscodeButtonVisible(true)
        .setConfirmButtonVisible(false)
        .setFooterLabelVisible(false)
        .setPasscodeButtonText("Use Passcode")
        .setConfirmButtonText("Sign in")
        .setDetailText("Detailed information")
        .setTitle("Title")
        .setUrlSecurity("https://developer.android.com")
        .build()
screen.initialize(css)
ConfirmBiometricScreen screen = new ConfirmBiometricScreen(getTargetContext());
ConfirmBiometricScreenSettings css = new ConfirmBiometricScreenSettings.Builder()
        .setConfirmButtonVisible(false)
        .setFooterLabelVisible(false)
        .setPasscodeButtonText("Use Passcode")
        .setConfirmButtonText("Sign in")
        .setDetailText("Detailed information")
        .setTitle("Title")
        .setUrlSecurity("https://developer.android.com")
        .build();
screen.initialize(css);

Last update: April 14, 2021