UI Color & Theme
UI theme, colors, and fullscreen in KMP.
Color theme (light/dark)
LuciqKmp.setColorTheme(ColorTheme.Light)
LuciqKmp.setColorTheme(ColorTheme.Dark)Custom theme (ThemeConfig)
val theme = ThemeConfig(
primaryColor = 0xFF6200EE.toInt(),
backgroundColor = 0xFFFFFFFF.toInt(),
primaryTextColor = 0xFF000000.toInt()
// ... other fields as per your platform
)
LuciqKmp.setTheme(theme)Fullscreen (Android)
Custom branding image
Override strings
Last updated