GiantToadFormField constructor

const GiantToadFormField({
  1. TextEditingController? controller,
  2. String? initialValue,
  3. FocusNode? focusNode,
  4. InputDecoration decoration = const InputDecoration(),
  5. TextInputType? keyboardType,
  6. List<TextInputFormatter>? inputFormatters,
  7. ValueChanged<String>? onChanged,
  8. ValueChanged<String>? onFieldSubmitted,
  9. ValueChanged<String>? onSubmitted,
  10. FormFieldValidator<String>? validator,
  11. bool? enabled,
  12. bool readOnly = false,
  13. int? maxLines = 1,
  14. int? minLines,
  15. bool autofocus = false,
  16. TextInputAction? textInputAction,
  17. Key? key,
})

Implementation

const GiantToadFormField({
  this.controller,
  this.initialValue,
  this.focusNode,
  this.decoration = const InputDecoration(),
  this.keyboardType,
  this.inputFormatters,
  this.onChanged,
  this.onFieldSubmitted,
  this.onSubmitted,
  this.validator,
  this.enabled,
  this.readOnly = false,
  this.maxLines = 1,
  this.minLines,
  this.autofocus = false,
  this.textInputAction,
  super.key,
});