XTextFieldStyle constructor
const
XTextFieldStyle({
- Color outlineColor = Colors.grey,
- Color focusedOutlineColor = Colors.blue,
- Color errorOutlineColor = Colors.red,
- double outlineWidth = 1.0,
- double focusedOutlineWidth = 1.5,
- double errorOutlineWidth = 1.5,
- double borderRadius = 6.0,
- Color? fillColor,
- Color? insetShadowColor,
- Color? insetHighlightColor,
Creates a new XTextFieldStyle instance.
Implementation
const XTextFieldStyle({
this.outlineColor = Colors.grey,
this.focusedOutlineColor = Colors.blue,
this.errorOutlineColor = Colors.red,
this.outlineWidth = 1.0,
this.focusedOutlineWidth = 1.5,
this.errorOutlineWidth = 1.5,
this.borderRadius = 6.0,
this.fillColor,
this.insetShadowColor,
this.insetHighlightColor,
});