public enum SupportedAppearance: Sendable {
case dark
case device
case light
}
| 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 |
public extension SupportedAppearance {
static let `default`: Self = .device
}
private let supportedAppearance: SupportedAppearance = .default
private let supportedAppearance: SupportedAppearance = .light