This commit is contained in:
2025-03-11 11:43:55 +02:00
parent f928a63b22
commit 1ebdcb3125

View File

@@ -31,6 +31,7 @@ class AstromicFieldStyle {
this.borderColor, this.borderColor,
this.borderGradient, this.borderGradient,
this.cursorColor, this.cursorColor,
this.cursorErrorColor,
this.hintStyle, this.hintStyle,
this.textStyle, this.textStyle,
}); });
@@ -64,6 +65,7 @@ class AstromicFieldStyle {
//s1 - Colors //s1 - Colors
final Color fillColor; final Color fillColor;
final Color? cursorColor; final Color? cursorColor;
final Color? cursorErrorColor;
final Color? borderColor; final Color? borderColor;
final Gradient? borderGradient; final Gradient? borderGradient;
//s1 - Styling //s1 - Styling
@@ -92,6 +94,7 @@ class AstromicFieldStyle {
CrossAxisAlignment? suffixAlignment, CrossAxisAlignment? suffixAlignment,
Color? fillColor, Color? fillColor,
Color? cursorColor, Color? cursorColor,
Color? cursorErrorColor,
Color? borderColor, Color? borderColor,
Gradient? borderGradient, Gradient? borderGradient,
TextStyle? hintStyle, TextStyle? hintStyle,
@@ -117,6 +120,7 @@ class AstromicFieldStyle {
suffixSize: suffixSize ?? this.suffixSize, suffixSize: suffixSize ?? this.suffixSize,
fillColor: fillColor ?? this.fillColor, fillColor: fillColor ?? this.fillColor,
cursorColor: cursorColor ?? this.cursorColor, cursorColor: cursorColor ?? this.cursorColor,
cursorErrorColor: cursorErrorColor ?? this.cursorErrorColor,
borderColor: borderColor ?? this.borderColor, borderColor: borderColor ?? this.borderColor,
borderGradient: borderGradient ?? this.borderGradient, borderGradient: borderGradient ?? this.borderGradient,
hintStyle: hintStyle ?? this.hintStyle, hintStyle: hintStyle ?? this.hintStyle,