UITextFieldThemeData constructor

const UITextFieldThemeData({
  1. double? borderWidth,
  2. double? height,
  3. BoxConstraints? iconConstraints,
  4. double? titleSpacing,
  5. Color? focusBorderColor,
  6. Color? borderColor,
  7. Color? errorColor,
  8. Color? backgroundColor,
  9. Color? cursorColor,
  10. TextStyle? counterStyle,
  11. TextStyle? titleStyle,
  12. TextStyle? textStyle,
  13. TextStyle? hintStyle,
  14. TextStyle? labelStyle,
  15. TextStyle? errorStyle,
  16. BorderRadius? defaultBorderRadius,
  17. BorderRadius? moreLinesBorderRadius,
  18. EdgeInsets? contentPadding,
  19. UIIconThemeData? cleanSuffixIcon,
  20. UIIconThemeData? obscureSuffixIcon,
})

Implementation

const UITextFieldThemeData({
  this.borderWidth,
  this.height,
  this.iconConstraints,
  this.titleSpacing,
  this.focusBorderColor,
  this.borderColor,
  this.errorColor,
  this.backgroundColor,
  this.cursorColor,
  this.counterStyle,
  this.titleStyle,
  this.textStyle,
  this.hintStyle,
  this.labelStyle,
  this.errorStyle,
  this.defaultBorderRadius,
  this.moreLinesBorderRadius,
  this.contentPadding,
  this.cleanSuffixIcon,
  this.obscureSuffixIcon,
});