ReactiveTextField constructor

const ReactiveTextField({
  1. Key? key,
  2. required ReactiveFieldState state,
  3. bool? dense,
  4. bool enabled = true,
  5. Color? fillColor,
  6. bool? filled,
  7. List<TextInputFormatter>? formatters,
  8. String? hint,
  9. IconData? icon,
  10. String? label,
  11. FloatingLabelBehavior floatingLabelBehavior = FloatingLabelBehavior.auto,
  12. int? maxLength,
  13. int? maxLines = 1,
  14. int? minLines,
  15. bool obscure = false,
  16. VoidCallback? onChanged,
  17. void onSuffixPressed()?,
  18. void onCanceled()?,
  19. EdgeInsets? padding,
  20. Widget? prefix,
  21. String? prefixText,
  22. TextStyle? prefixStyle,
  23. TextStyle? style,
  24. IconData? suffix,
  25. TextAlign textAlign = TextAlign.start,
  26. TextInputAction? textInputAction,
  27. Widget? trailing,
  28. bool treatErrorAsStatus = true,
  29. TextInputType? type,
  30. Widget? subtitle,
  31. bool clearable = true,
  32. bool? selectable,
})

Implementation

const ReactiveTextField({
  super.key,
  required this.state,
  this.dense,
  this.enabled = true,
  this.fillColor,
  this.filled,
  this.formatters,
  this.hint,
  this.icon,
  this.label,
  this.floatingLabelBehavior = FloatingLabelBehavior.auto,
  this.maxLength,
  this.maxLines = 1,
  this.minLines,
  this.obscure = false,
  this.onChanged,
  this.onSuffixPressed,
  this.onCanceled,
  this.padding,
  this.prefix,
  this.prefixText,
  this.prefixStyle,
  this.style,
  this.suffix,
  this.textAlign = TextAlign.start,
  this.textInputAction,
  this.trailing,
  this.treatErrorAsStatus = true,
  this.type,
  this.subtitle,
  this.clearable = true,
  this.selectable,
});