Android
public object StepperDefaults
Defaults used by Stepper.
Functions
@Composable public fun colors(): StepperColors
Creates a StepperColors that represents the default colors used in a Stepper.
colors
@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. |