FERAInputField constructor
const
FERAInputField({
- Key? key,
- TextEditingController? controller,
- FocusNode? focusNode,
- TextInputType? keyboardType,
- TextCapitalization textCapitalization = TextCapitalization.none,
- bool autofocus = false,
- bool obscureText = false,
- bool autocorrect = true,
- int? maxLines = 1,
- int? minLines = 1,
- bool expands = false,
- void onChanged()?,
- void onSubmitted()?,
- void onEditingComplete()?,
- int? maxLength,
- bool enabled = true,
- List<
TextInputFormatter> ? inputFormatters, - required String? labelText,
- String? errorText,
- Widget? suffixIcon,
- String? suffixText,
- Widget? prefixIcon,
- String? prefixText,
Implementation
const FERAInputField(
{super.key,
this.controller,
this.focusNode,
this.keyboardType,
this.textCapitalization = TextCapitalization.none,
this.autofocus = false,
this.obscureText = false,
this.autocorrect = true,
this.maxLines = 1,
this.minLines = 1,
this.expands = false,
this.onChanged,
this.onSubmitted,
this.onEditingComplete,
this.maxLength,
this.enabled = true,
this.inputFormatters,
required this.labelText,
this.errorText,
this.suffixIcon,
this.suffixText,
this.prefixIcon,
this.prefixText});