ui_kit-ui_components/feat/add-textinputs-components #145

Merged
hugo merged 25 commits from ui_kit-ui_components/feat/add-textinputs-components into master 2023-02-21 15:11:35 +00:00
2 changed files with 6 additions and 6 deletions
Showing only changes of commit c6beae597b - Show all commits

View File

@ -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;
}

View File

@ -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,