InputTextField constructor
const
InputTextField({
- Key? key,
- TextEditingController? controller,
- ValueChanged<
String> ? onChanged, - FormFieldValidator<
String> ? validate, - String initialValue = '',
- bool obscureText = false,
- bool disabled = false,
- String hintText = '',
- bool disabledErrorText = false,
- Widget? suffixIcon,
- AutovalidateMode? autovalidateMode = AutovalidateMode.disabled,
- FocusNode? focusNode,
Implementation
const InputTextField({
super.key,
this.controller,
this.onChanged,
this.validate,
this.initialValue = '',
this.obscureText = false,
this.disabled = false,
this.hintText = '',
this.disabledErrorText = false,
this.suffixIcon,
this.autovalidateMode = AutovalidateMode.disabled,
this.focusNode,
});