NumericInputField constructor
const
NumericInputField({
- Key? key,
- TextEditingController? controller,
- required String label,
- bool allowDecimal = false,
- dynamic onChange()?,
- void onClear()?,
- bool readOnly = false,
- String? initialValue,
- InputDecoration? inputDecoration,
- double? textFormFieldWidth,
- double? textFormFieldHeight,
- double? fontSize,
- double? padding,
Implementation
const NumericInputField(
{super.key,
this.controller,
required this.label,
this.allowDecimal = false,
this.onChange,
this.onClear,
this.readOnly = false,
this.initialValue,
this.inputDecoration,
this.textFormFieldWidth,
this.textFormFieldHeight,
this.fontSize,
this.padding});