RTextFieldOverrides constructor
const
RTextFieldOverrides({
- EdgeInsetsGeometry? containerPadding,
- Color? containerBackgroundColor,
- Color? containerBorderColor,
- BorderRadius? containerBorderRadius,
- double? containerBorderWidth,
- double? containerElevation,
- Duration? containerAnimationDuration,
- TextStyle? labelStyle,
- Color? labelColor,
- TextStyle? helperStyle,
- Color? helperColor,
- TextStyle? errorStyle,
- Color? errorColor,
- double? messageSpacing,
- TextStyle? textStyle,
- Color? textColor,
- TextStyle? placeholderStyle,
- Color? placeholderColor,
- Color? cursorColor,
- Color? selectionColor,
- Color? iconColor,
- double? iconSpacing,
- Size? minSize,
Implementation
const RTextFieldOverrides({
// Container
this.containerPadding,
this.containerBackgroundColor,
this.containerBorderColor,
this.containerBorderRadius,
this.containerBorderWidth,
this.containerElevation,
this.containerAnimationDuration,
// Label / Helper / Error
this.labelStyle,
this.labelColor,
this.helperStyle,
this.helperColor,
this.errorStyle,
this.errorColor,
this.messageSpacing,
// Input
this.textStyle,
this.textColor,
this.placeholderStyle,
this.placeholderColor,
this.cursorColor,
this.selectionColor,
// Icons / Slots
this.iconColor,
this.iconSpacing,
// Sizing
this.minSize,
});