Source set: Common
public class ScrollFieldColors(
public val containerColor: Color,
public val unselectedContentColor: Color,
public val selectedContentColor: Color,
)
Represents the colors used by a ScrollField in different states.
Functions
copy
Source set: Common
public fun copy(
containerColor: Color = this.containerColor,
unselectedContentColor: Color = this.unselectedContentColor,
selectedContentColor: Color = this.selectedContentColor,
): ScrollFieldColors
Returns a copy of this ScrollFieldColors, optionally overriding some of the values. This uses the Color.Unspecified to mean “use the value from the source".
equals
Source set: Common
override fun equals(other: Any?): Boolean
hashCode
Source set: Common
override fun hashCode(): Int