InterRegularTextFieldInput constructor

const InterRegularTextFieldInput({
  1. Key? key,
  2. required TextEditingController controller,
  3. required String? hintText,
  4. Color? textColor,
  5. Color? textHintColor,
  6. double fontSize = 14.0,
  7. TextInputType keyboardType = TextInputType.text,
  8. Color backgroundColor = Colors.white,
  9. bool obscureText = false,
  10. Icon? prefixIcon,
  11. Image? suffixIcon,
  12. String? validator()?,
  13. int? maxLength,
  14. List<TextInputFormatter>? inputFormatters,
  15. void onChanged(
    1. String
    )?,
})

Implementation

const InterRegularTextFieldInput({
  super.key,
  required this.controller,
  required this.hintText,
  this.textColor,
  this.textHintColor,
  this.fontSize = 14.0,
  this.keyboardType = TextInputType.text,
  this.backgroundColor = Colors.white,
  this.obscureText = false,
  this.prefixIcon,
  this.suffixIcon,
  this.validator,
  this.maxLength,
  this.inputFormatters,
  this.onChanged
});