StepperColors

Class

Android
public class StepperColors(
    public val contentColor: Color,
    public val buttonContainerColor: Color,
    public val buttonIconColor: Color,
    public val disabledContentColor: Color,
    public val disabledButtonContainerColor: Color,
    public val disabledButtonIconColor: Color,
)

Represents Colors used in Stepper.

Parameters

contentColorthe content color of this Stepper.
buttonContainerColorthe button background color of this Stepper.
buttonIconColoricon tint Color for this Stepper.
disabledContentColorthe content color of this Stepper in disabled state.
disabledButtonContainerColorthe button background color of this Stepper in disabled state.
disabledButtonIconColoricon tint Color for this Stepper in disabled state.

Functions

public fun copy(
        contentColor: Color = this.contentColor,
        buttonContainerColor: Color = this.buttonContainerColor,
        buttonIconColor: Color = this.buttonIconColor,
        disabledContentColor: Color = this.disabledContentColor,
        disabledButtonContainerColor: Color = this.disabledButtonContainerColor,
        disabledButtonIconColor: Color = this.disabledButtonIconColor,
    ): StepperColors

Returns a copy of this StepperColors optionally overriding some of the values.

Parameters

contentColorThe content color of this Stepper.
buttonContainerColorThe button background color of this Stepper.
buttonIconColorIcon tint Color for this Stepper.
disabledContentColorThe content color of this Stepper in disabled state.
disabledButtonContainerColorThe button background color of this Stepper in disabled state.
disabledButtonIconColorIcon tint Color for this Stepper in disabled state.