SupportedAppearance
Controls whether the SDK uses light, dark, or device appearance
Definition
enum class SupportedAppearance {
Dark,
Device,
Light
}Cases
| Case | Description |
|---|---|
| Dark | Forces the SDK to use dark appearance regardless of the device setting |
| Device | The SDK follows the device's current appearance setting |
| Light | Forces the SDK to use light appearance regardless of the device setting |
Default
The default value is Device.
val supportedAppearance = SupportedAppearance.DeviceSample Usage
val supportedAppearance = SupportedAppearance.LightUpdated 8 days ago
