TNumberField constructor

TNumberField({
  1. Key? key,
  2. TextEditingController? controller,
  3. Widget? label,
  4. FocusNode? focusNode,
  5. int? maxLines = 1,
  6. void onChanged(
    1. String text
    )?,
  7. void onSubmitted(
    1. String text
    )?,
  8. bool autofocus = false,
  9. bool? enabled,
  10. String? hintText,
})

Implementation

TNumberField({
  super.key,
  this.controller,
  this.label,
  this.focusNode,
  this.maxLines = 1,
  this.onChanged,
  this.onSubmitted,
  this.autofocus=false,
  this.enabled,
  this.hintText,
});