Object

StepperDefaults

Defaults used by Stepper.

Source set: Android

Added in 1.7.0-alpha01

public object StepperDefaults

Defaults used by Stepper.

Properties

IconSize

Source set: Android

Added in 1.7.0-alpha01

public val IconSize: Dp

Default size for increase and decrease icons.

Functions

colors

Added in 1.7.0-alpha01

@Composable public fun colors(): StepperColors

Creates a StepperColors that represents the default colors used in a Stepper.

colors

colors

Added in 1.7.0-alpha01

@Composable
public fun colors(
    contentColor: Color = Color.Unspecified,
    buttonContainerColor: Color = Color.Unspecified,
    buttonIconColor: Color = Color.Unspecified,
    disabledContentColor: Color = Color.Unspecified,
    disabledButtonContainerColor: Color = Color.Unspecified,
    disabledButtonIconColor: Color = Color.Unspecified,
): StepperColors

Creates a StepperColors that represents the default colors used in a Stepper.

Parameters

contentColor the content color for this Stepper.
buttonContainerColor the button container color for this Stepper.
buttonIconColor the button icon color for this Stepper.
disabledContentColor the disabled content color for this Stepper.
disabledButtonContainerColor the disabled button container color for this Stepper.
disabledButtonIconColor the disabled button icon color for this Stepper.

Last updated: