CommonTextField constructor

const CommonTextField({
  1. Key? key,
  2. required String labelText,
  3. dynamic onChanged(
    1. String
    )?,
  4. int? maxLength,
  5. TextInputType? textInputType,
  6. TextEditingController? editingController,
  7. Widget? suffixChild,
  8. List<TextInputFormatter>? inputFormatter,
  9. VoidCallback? onFocusChanged,
})

Implementation

const CommonTextField({
  super.key,
  required this.labelText,
  this.onChanged,
  this.maxLength,
  this.textInputType,
  this.editingController,
  this.suffixChild,
  this.inputFormatter,
  this.onFocusChanged,
});