refactor(ui_components): update colors using Multicolor class (#138)
This commit is contained in:
parent
c2b60f2d79
commit
c6beae597b
@ -145,7 +145,7 @@ abstract class TextInputComponent extends Component
|
||||
final EditableTextContextMenuBuilder? contextMenuBuilder;
|
||||
final SpellCheckConfiguration? spellCheckConfiguration;
|
||||
|
||||
final List<Color>? backgroundColors;
|
||||
final List<Color>? borderColors;
|
||||
final MultiColor? backgroundColors;
|
||||
final MultiColor? borderColors;
|
||||
final double? radius;
|
||||
}
|
||||
|
@ -7,8 +7,8 @@ part of 'text_input_component.dart';
|
||||
// **************************************************************************
|
||||
|
||||
abstract class $TextInputComponentCWProxy {
|
||||
TextInputComponent backgroundColors(List<Color>? backgroundColors);
|
||||
TextInputComponent borderColors(List<Color>? borderColors);
|
||||
TextInputComponent backgroundColors(MultiColor? backgroundColors);
|
||||
TextInputComponent borderColors(MultiColor? borderColors);
|
||||
TextInputComponent radius(double? radius);
|
||||
TextInputComponent controller(TextEditingController? controller);
|
||||
TextInputComponent focusNode(FocusNode? focusNode);
|
||||
@ -76,8 +76,8 @@ abstract class $TextInputComponentCWProxy {
|
||||
TextMagnifierConfiguration? magnifierConfiguration);
|
||||
TextInputComponent key(Key? key);
|
||||
TextInputComponent call({
|
||||
List<Color>? backgroundColors,
|
||||
List<Color>? borderColors,
|
||||
MultiColor? backgroundColors,
|
||||
MultiColor? borderColors,
|
||||
double? radius,
|
||||
TextEditingController? controller,
|
||||
FocusNode? focusNode,
|
||||
|
Loading…
x
Reference in New Issue
Block a user