Source set: Android
public class IconToggleButtonColors(
public val backgroundColor: Color,
public val checkedBackgroundColor: Color,
public val contentColor: Color,
public val checkedContentColor: Color,
)
Represents the colors used by an IconToggleButton in different states.
Functions
copy
public fun copy(
backgroundColor: Color = this.backgroundColor,
checkedBackgroundColor: Color = this.checkedBackgroundColor,
contentColor: Color = this.contentColor,
checkedContentColor: Color = this.checkedContentColor,
): IconToggleButtonColors