NumberSpinner<T extends num> constructor
- Key? key,
- T decrement(
- T
- T increment(
- T
- List<
TextInputFormatter> ? inputFormatters, - T? max,
- T? min,
- bool? enabled,
- T? initialValue,
- void onChanged(
- T
- InputDecoration? decoration,
A spinner widget that allows the user to increment or decrement a number.
Implementation
const NumberSpinner({
super.key,
this.decrement,
this.increment,
this.inputFormatters,
this.max,
this.min,
this.enabled,
this.initialValue,
this.onChanged,
this.decoration,
});