master #81

Closed
malo wants to merge 322 commits from master into feat/bloc_layout/new-package
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 EditableTextContextMenuBuilder? contextMenuBuilder;
final SpellCheckConfiguration? spellCheckConfiguration; final SpellCheckConfiguration? spellCheckConfiguration;
final List<Color>? backgroundColors; final MultiColor? backgroundColors;
final List<Color>? borderColors; final MultiColor? borderColors;
final double? radius; final double? radius;
} }

View File

@ -7,8 +7,8 @@ part of 'text_input_component.dart';
// ************************************************************************** // **************************************************************************
abstract class $TextInputComponentCWProxy { abstract class $TextInputComponentCWProxy {
TextInputComponent backgroundColors(List<Color>? backgroundColors); TextInputComponent backgroundColors(MultiColor? backgroundColors);
TextInputComponent borderColors(List<Color>? borderColors); TextInputComponent borderColors(MultiColor? borderColors);
TextInputComponent radius(double? radius); TextInputComponent radius(double? radius);
TextInputComponent controller(TextEditingController? controller); TextInputComponent controller(TextEditingController? controller);
TextInputComponent focusNode(FocusNode? focusNode); TextInputComponent focusNode(FocusNode? focusNode);
@ -76,8 +76,8 @@ abstract class $TextInputComponentCWProxy {
TextMagnifierConfiguration? magnifierConfiguration); TextMagnifierConfiguration? magnifierConfiguration);
TextInputComponent key(Key? key); TextInputComponent key(Key? key);
TextInputComponent call({ TextInputComponent call({
List<Color>? backgroundColors, MultiColor? backgroundColors,
List<Color>? borderColors, MultiColor? borderColors,
double? radius, double? radius,
TextEditingController? controller, TextEditingController? controller,
FocusNode? focusNode, FocusNode? focusNode,