TDStepper constructor
const
TDStepper({
- Key? key,
- bool disableInput = false,
- bool disabled = false,
- double? inputWidth,
- int max = 100,
- int min = 0,
- TDStepperSize size = TDStepperSize.medium,
- int step = 1,
- TDStepperTheme theme = TDStepperTheme.normal,
- int? value = 0,
- int? defaultValue = 0,
- VoidCallback? onBlur,
- ValueChanged<
int> ? onChange, - TDStepperOverlimitFunction? onOverlimit,
Implementation
const TDStepper({
Key? key,
this.disableInput = false,
this.disabled = false,
this.inputWidth,
this.max = 100,
this.min = 0,
this.size = TDStepperSize.medium,
this.step = 1,
this.theme = TDStepperTheme.normal,
this.value = 0,
this.defaultValue = 0,
this.onBlur,
this.onChange,
this.onOverlimit,
}) : super(key: key);