class StepperColors


Represents Colors used in Stepper.

Summary

Public constructors

StepperColors(
    contentColor: Color,
    buttonContainerColor: Color,
    buttonIconColor: Color,
    disabledContentColor: Color,
    disabledButtonContainerColor: Color,
    disabledButtonIconColor: Color
)

Public functions

StepperColors
copy(
    contentColor: Color,
    buttonContainerColor: Color,
    buttonIconColor: Color,
    disabledContentColor: Color,
    disabledButtonContainerColor: Color,
    disabledButtonIconColor: Color
)

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

open operator Boolean
equals(other: Any?)
open Int

Public properties

Color

the button background color of this Stepper.

Color

icon tint Color for this Stepper.

Color

the content color of this Stepper.

Color

the button background color of this Stepper in disabled state.

Color

icon tint Color for this Stepper in disabled state.

Color

the content color of this Stepper in disabled state.

Public constructors

StepperColors

StepperColors(
    contentColor: Color,
    buttonContainerColor: Color,
    buttonIconColor: Color,
    disabledContentColor: Color,
    disabledButtonContainerColor: Color,
    disabledButtonIconColor: Color
)
Parameters
contentColor: Color

the content color of this Stepper.

buttonContainerColor: Color

the button background color of this Stepper.

buttonIconColor: Color

icon tint Color for this Stepper.

disabledContentColor: Color

the content color of this Stepper in disabled state.

disabledButtonContainerColor: Color

the button background color of this Stepper in disabled state.

disabledButtonIconColor: Color

icon tint Color for this Stepper in disabled state.

Public functions

copy

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: Color = this.contentColor

The content color of this Stepper.

buttonContainerColor: Color = this.buttonContainerColor

The button background color of this Stepper.

buttonIconColor: Color = this.buttonIconColor

Icon tint Color for this Stepper.

disabledContentColor: Color = this.disabledContentColor

The content color of this Stepper in disabled state.

disabledButtonContainerColor: Color = this.disabledButtonContainerColor

The button background color of this Stepper in disabled state.

disabledButtonIconColor: Color = this.disabledButtonIconColor

Icon tint Color for this Stepper in disabled state.

equals

open operator fun equals(other: Any?): Boolean

hashCode

open fun hashCode(): Int

Public properties

buttonContainerColor

Added in 1.0.0-alpha28
val buttonContainerColorColor

the button background color of this Stepper.

buttonIconColor

Added in 1.0.0-alpha28
val buttonIconColorColor

icon tint Color for this Stepper.

contentColor

Added in 1.0.0-alpha28
val contentColorColor

the content color of this Stepper.

disabledButtonContainerColor

Added in 1.0.0-alpha28
val disabledButtonContainerColorColor

the button background color of this Stepper in disabled state.

disabledButtonIconColor

Added in 1.0.0-alpha28
val disabledButtonIconColorColor

icon tint Color for this Stepper in disabled state.

disabledContentColor

Added in 1.0.0-alpha28
val disabledContentColorColor

the content color of this Stepper in disabled state.