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

contentColor the content color of this Stepper.
buttonContainerColor the button background color of this Stepper.
buttonIconColor icon tint Color for this Stepper.
disabledContentColor the content color of this Stepper in disabled state.
disabledButtonContainerColor the button background color of this Stepper in disabled state.
disabledButtonIconColor icon 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

contentColor The content color of this Stepper.
buttonContainerColor The button background color of this Stepper.
buttonIconColor Icon tint Color for this Stepper.
disabledContentColor The content color of this Stepper in disabled state.
disabledButtonContainerColor The button background color of this Stepper in disabled state.
disabledButtonIconColor Icon tint Color for this Stepper in disabled state.