Customization
Customize the SDK-provided screens to match your application's style
Last updated
Was this helpful?
Customize the SDK-provided screens to match your application's style
Last updated
Was this helpful?
All Composables taken in the standard Jetpack Compose Modifier
parameter, which can be used to further customize the screen as needed.
You may override specific strings by defining new values for the XML string resources defined in the SDK. The full list of string resources is available here:
For example, to update the Smart Selfie instructions, you can override the si_smart_selfie_instructions
XML resource in your own strings.xml
file
To provide translations, create a new values folder specific to the language (i.e. values-fr
) and create a strings.xml
overriding all values. For further information, refer to
There are 2 options for customizing the colours of the screens presented by the SDK: via Jetpack Compose or XML Resources.
Colour Scheme
When invoking a Composable function, the colour scheme and typography can be customized by the values passed to the colorScheme
and typography
parameters, respectively.
The default theme is publicly exposed as SmileID.colorScheme
and can be copied and modified.
Typography
Additionally, you may also customize the typography in a similar fashion via the typography
parameter to all Composables.
The default typography is exposed as SmileID.typography
and can be copied and modified.