diff --git a/packages/wyatt_ui_components/lib/src/domain/entities/text_inputs/text_input_style.dart b/packages/wyatt_ui_components/lib/src/domain/entities/text_inputs/text_input_style.dart index 6de90922..7849eb19 100644 --- a/packages/wyatt_ui_components/lib/src/domain/entities/text_inputs/text_input_style.dart +++ b/packages/wyatt_ui_components/lib/src/domain/entities/text_inputs/text_input_style.dart @@ -55,19 +55,19 @@ class TextInputStyle extends ThemeStyle { 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, ); } diff --git a/packages/wyatt_ui_kit/lib/src/components/text_inputs/text_input_screen.dart b/packages/wyatt_ui_kit/lib/src/components/text_inputs/text_input_screen.dart index f7b3945b..bc109d98 100644 --- a/packages/wyatt_ui_kit/lib/src/components/text_inputs/text_input_screen.dart +++ b/packages/wyatt_ui_kit/lib/src/components/text_inputs/text_input_screen.dart @@ -208,9 +208,7 @@ class TextInputScreen extends CubitScreen { textInputStyle = normalStyle; break; case ControlState.hovered: - break; case ControlState.tapped: - break; case null: break; } @@ -221,11 +219,8 @@ class TextInputScreen extends CubitScreen { style = errorStyle; break; case StatusState.initial: - break; case StatusState.success: - break; case StatusState.loading: - break; case null: break; } diff --git a/packages/wyatt_ui_kit/lib/src/components/text_inputs/text_input_theme_resolver.dart b/packages/wyatt_ui_kit/lib/src/components/text_inputs/text_input_theme_resolver.dart index 62bd59f4..5a3fbd0c 100644 --- a/packages/wyatt_ui_kit/lib/src/components/text_inputs/text_input_theme_resolver.dart +++ b/packages/wyatt_ui_kit/lib/src/components/text_inputs/text_input_theme_resolver.dart @@ -81,11 +81,8 @@ class TextInputThemeResolver extends ThemeResolver