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
| enabled | Whether the Switchis enabled | 
| checked | Whether the Switchis 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
| enabled | Whether the Switchis enabled | 
| checked | Whether the Switchis currently checked or unchecked | 
