FUITextField constructor

const FUITextField({
  1. Key? key,
  2. TextEditingController? controller,
  3. String? label,
  4. String? hintText,
  5. IconData? prefixIcon,
  6. Widget? suffix,
  7. bool obscureText = false,
  8. bool enabled = true,
  9. TextInputType? keyboardType,
  10. TextInputAction? textInputAction,
  11. ValueChanged<String>? onChanged,
  12. ValueChanged<String>? onSubmitted,
  13. Iterable<String>? autofillHints,
})

Implementation

const FUITextField({
  super.key,
  this.controller,
  this.label,
  this.hintText,
  this.prefixIcon,
  this.suffix,
  this.obscureText = false,
  this.enabled = true,
  this.keyboardType,
  this.textInputAction,
  this.onChanged,
  this.onSubmitted,
  this.autofillHints,
});