fix(ui_component): inverse merge in TextInputStyle
continuous-integration/drone/push Build is passing
continuous-integration/drone/push Build is passing
This commit was merged in pull request #145.
This commit is contained in:
+13
-13
@@ -55,19 +55,19 @@ class TextInputStyle extends ThemeStyle<TextInputStyle> {
|
||||
if (a == null) {
|
||||
return b.copyWith();
|
||||
}
|
||||
return b.copyWith(
|
||||
labelStyle: a.labelStyle,
|
||||
hintStyle: a.hintStyle,
|
||||
backgroundColors: a.backgroundColors,
|
||||
borderColors: a.borderColors,
|
||||
boxShadow: a.boxShadow,
|
||||
radius: a.radius,
|
||||
inputStyle: a.inputStyle,
|
||||
iconColor: a.iconColor,
|
||||
prefixStyle: a.prefixStyle,
|
||||
prefixIconColor: a.prefixIconColor,
|
||||
suffixIconColor: a.suffixIconColor,
|
||||
suffixStyle: a.suffixStyle,
|
||||
return a.copyWith(
|
||||
labelStyle: b.labelStyle,
|
||||
hintStyle: b.hintStyle,
|
||||
backgroundColors: b.backgroundColors,
|
||||
borderColors: b.borderColors,
|
||||
boxShadow: b.boxShadow,
|
||||
radius: b.radius,
|
||||
inputStyle: b.inputStyle,
|
||||
iconColor: b.iconColor,
|
||||
prefixStyle: b.prefixStyle,
|
||||
prefixIconColor: b.prefixIconColor,
|
||||
suffixIconColor: b.suffixIconColor,
|
||||
suffixStyle: b.suffixStyle,
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user