SwitchColors

Interface

Android
public interface SwitchColors

Represents the content colors used in Switch in different states.

Functions

@Composable public fun thumbColor(enabled: Boolean, checked: Boolean): State<Color>

Represents the thumb color for this Switch, depending on the enabled and checked properties.

Parameters

enabledWhether the Switch is enabled
checkedWhether the Switch is currently checked or unchecked
@Composable public fun trackColor(enabled: Boolean, checked: Boolean): State<Color>

Represents the track color for this Switch, depending on the enabled and checked properties.

Parameters

enabledWhether the Switch is enabled
checkedWhether the Switch is currently checked or unchecked