Stepper Input
A stepper input, also called numeric stepper, is a common UI element that allows users to input a number or value simply by clicking the plus and minus buttons.
Figma Link
https://www.figma.com/design/JesXQFLaPJLc1BdBM4sisI/%F0%9F%A6%93-ZDS---Components?node-id=21529-9963
- Web Components
- Flutter
Demo
zeta-web v0.12.9
Web Components
Storybook
https://design.zebra.com/web/storybook/?path=/docs/components-stepper-input--docs
Attributes
| Name | Description | Type | Default |
|---|---|---|---|
| size | "medium" | "large" | "medium" | |
| hintText | Hint text shown below text field.if error, then errorText is shown instead. | string | undefined | undefined |
| error | Whether text field is in error state. | boolean | false |
| errorText | Error hint textShown if error, replaces hintText. | string | undefined | undefined |
Inherited Attributes
| Name | Description | Type | Default | Inherited From |
|---|---|---|---|---|
| value | The value of the Form Control that is submitted when part of a form. | string | null | "" | FormField |
| disabled | Boolean for if component is disabled.This will apply disabled styles. | boolean | false | FormField |
| autoCapitalize | Whether inputted text is automatically capitalized and how. Only takes effect on non-keyboard entry | "none" | "off" | "sentences" | "on" | "words" | "characters" | undefined | undefined | FormField |
| autoComplete | AutoFill | undefined | undefined | FormField | |
| name | The name of the form control. | string | "" | FormField |
| id | The id of the form control. | string | "" | FormField |
| required | Indicates whether the form control is required to be filled out before submitting the form. | boolean | false | FormField |
| checked | The state of the Switch or Checkbox that is submitted when part of a form. | boolean | undefined | FormField |
| indeterminate | The state of the Switch or Checkbox defined by a mixed or unknown state. | boolean | false | FormField |
| placeholder | Placeholder text shown when value is empty. | string | undefined | undefined | FormField |
| min | The minimum value for number inputs | number | undefined | undefined | FormField |
| max | The maximum value for number inputs | number | undefined | undefined | FormField |
| readOnly | Placeholder text shown when value is empty. | boolean | undefined | undefined | FormField |
| spellCheck | Whether to spellcheck the input | boolean | "default" | undefined | undefined | FormField |
| rounded | Whether the component is rounded or sharp.When true, rounded will set the border radius of the first child, and any children with class 'contourable-target' to --radius-minimal.Otherwise, this value will be --radius-none. | boolean | undefined | true | Contourable |
Demo
Widgetbook
Inheritance
Object > DiagnosticableTree > Widget > StatefulWidget > ZetaStatefulWidget
Constructors
Creates a new ZetaStepperInput
ZetaStepperInput.new({Key? key, bool? rounded, ZetaStepperInputSize size = ZetaStepperInputSize.medium, int? value, int? min, int? max, ValueChanged<int>? onChange, String? semanticDecrement, String? semanticIncrement})
Properties
| Name | Description | Type | Features |
|---|---|---|---|
| hashCode | The hash code for this object. | int | no setter inherited |
| key | Controls how one widget replaces another widget in the tree. | Key? | final inherited |
| max | The maximum value of the stepper input. | int? | final |
| min | The minimum value of the stepper input. | int? | final |
| onChange | Called with the value of the stepper whenever it is changed. | ValueChanged<int>? | final |
| rounded | Sets rounded or sharp border of the containing box and the icon style. | bool? | final inherited |
| runtimeType | A representation of the runtime type of the object. | Type | no setter inherited |
| semanticDecrement | Value used for the semantic label of the decrement button. | String? | final |
| semanticIncrement | Value used for the semantic label of the increment button. | String? | final |
| size | The size of the stepper input. | ZetaStepperInputSize | final |
| value | The initial value of the stepper input. | int? | final |