StepperForm
fun StepperForm(value: Int, onValueChange: (Int) -> Unit, label: String, helper: String?, modifier: Modifier = Modifier, range: IntRange = 0..10, suffix: String = "", step: Int = 1, enabled: Boolean = true, required: Boolean = false, status: FormFieldStatus? = null, statusMessage: String? = null, flexible: Boolean = false, testTag: String? = null)(source)
Deprecated
Use Stepper.NudgerForm instead
Replace with
import com.adevinta.spark.components.stepper.Stepper
Content copied to clipboard
Stepper.NudgerForm(value = value, onValueChange = onValueChange, label = label, helper = helper, modifier = modifier, range = range, suffix = suffix, step = step, enabled = enabled, required = required, status = status, statusMessage = statusMessage, flexible = flexible, testTag = testTag)Content copied to clipboard