FERAInputField constructor

const FERAInputField({
  1. Key? key,
  2. TextEditingController? controller,
  3. FocusNode? focusNode,
  4. TextInputType? keyboardType,
  5. TextCapitalization textCapitalization = TextCapitalization.none,
  6. bool autofocus = false,
  7. bool obscureText = false,
  8. bool autocorrect = true,
  9. int? maxLines = 1,
  10. int? minLines = 1,
  11. bool expands = false,
  12. void onChanged(
    1. String
    )?,
  13. void onSubmitted(
    1. String
    )?,
  14. void onEditingComplete()?,
  15. int? maxLength,
  16. bool enabled = true,
  17. List<TextInputFormatter>? inputFormatters,
  18. required String? labelText,
  19. String? errorText,
  20. Widget? suffixIcon,
  21. String? suffixText,
  22. Widget? prefixIcon,
  23. 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});