UI Components

In addition to the high level orchestrated screens described in Products, we also make available the smaller building-block UI components that are used to build those screens. Details about available components can be found by visiting the reference docs/javadocs at https://javadoc.io/doc/com.smileidentity/android-sdk/latest/allclasses.html

You must use Jetpack Compose in order to use these lower level UI components

For example, if you want to display only the Selfie Instruction screen:

SmartSelfieInstructionsScreen(
    onInstructionsAcknowledged = { /* perform some action */ }
)

Last updated