TextFieldStyler constructor

TextFieldStyler({
  1. bool textFieldFilled = false,
  2. String helperText = 'Enter tags',
  3. TextStyle? helperStyle,
  4. int? maxLength,
  5. TextStyle? textStyle,
  6. TextInputType? textInputType,
  7. Color? cursorColor,
  8. String hintText = 'Got tags?',
  9. TextStyle? hintStyle,
  10. EdgeInsets? contentPadding,
  11. Color? textFieldFilledColor,
  12. bool isDense = true,
  13. bool readOnly = false,
  14. bool textFieldEnabled = true,
  15. Icon? icon,
  16. InputBorder? textFieldBorder = const OutlineInputBorder(),
  17. InputBorder? textFieldFocusedBorder,
  18. InputBorder? textFieldDisabledBorder,
  19. InputBorder? textFieldEnabledBorder,
})

Implementation

TextFieldStyler({
  this.textFieldFilled = false,
  this.helperText = 'Enter tags',
  this.helperStyle,
  this.maxLength,
  this.textStyle,
  this.textInputType,
  this.cursorColor,
  this.hintText = 'Got tags?',
  this.hintStyle,
  this.contentPadding,
  this.textFieldFilledColor,
  this.isDense = true,
  this.readOnly = false,
  this.textFieldEnabled = true,
  this.icon,
  this.textFieldBorder = const OutlineInputBorder(),
  this.textFieldFocusedBorder,
  this.textFieldDisabledBorder,
  this.textFieldEnabledBorder,
});