InterRegularTextFieldInput constructor
const
InterRegularTextFieldInput({
- Key? key,
- required TextEditingController controller,
- required String? hintText,
- Color? textColor,
- Color? textHintColor,
- double fontSize = 14.0,
- TextInputType keyboardType = TextInputType.text,
- Color backgroundColor = Colors.white,
- bool obscureText = false,
- Icon? prefixIcon,
- Image? suffixIcon,
- String? validator()?,
- int? maxLength,
- List<
TextInputFormatter> ? inputFormatters, - void onChanged()?,
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
});