XTextFieldNumber constructor

const XTextFieldNumber({
  1. String label = "",
  2. String hint = "",
  3. String initialValue = "",
  4. required dynamic onChange(
    1. String value
    ),
  5. double? fontSize,
  6. EdgeInsets? padding,
  7. int? digits,
  8. bool readOnly = false,
  9. String? fontFamily,
  10. Key? key,
})

Implementation

const XTextFieldNumber({
  this.label = "",
  this.hint = "",
  this.initialValue = "",
  required this.onChange,
  this.fontSize,
  this.padding,
  this.digits,
  this.readOnly = false,
  this.fontFamily,
  super.key,
});