Skip to content

Commit

Permalink
Merge pull request #155 from IiemB/master
Browse files Browse the repository at this point in the history
update reactive_extended_text_field dependecies verison
  • Loading branch information
vasilich6107 authored Aug 8, 2024
2 parents ca66a40 + dfc3d2c commit d27901c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,13 +160,14 @@ class ReactiveExtendedTextField<T> extends ReactiveFormField<T, String> {
bool? cursorOpacityAnimates,
Color? cursorErrorColor,
UndoHistoryController? undoController,
MaterialStatesController? statesController,
WidgetStatesController? statesController,
bool onTapAlwaysCalled = false,
TapRegionCallback? onTapOutside,
InputCounterWidgetBuilder? buildCounter,
ContentInsertionConfiguration? contentInsertionConfiguration,
Clip clipBehavior = Clip.hardEdge,
ExtendedEditableTextContextMenuBuilder? extendedContextMenuBuilder = _defaultContextMenuBuilder,
ExtendedEditableTextContextMenuBuilder? extendedContextMenuBuilder =
_defaultContextMenuBuilder,
bool canRequestFocus = true,
TextMagnifierConfiguration? magnifierConfiguration,
}) : super(
Expand All @@ -180,8 +181,8 @@ class ReactiveExtendedTextField<T> extends ReactiveFormField<T, String> {
return ExtendedTextField(
focusNode: state.focusNode,
controller: state._textController,
undoController:undoController,
statesController:statesController,
undoController: undoController,
statesController: statesController,
onChanged: field.didChange,
autofillHints: autofillHints,
autofocus: autofocus,
Expand Down Expand Up @@ -240,16 +241,16 @@ class ReactiveExtendedTextField<T> extends ReactiveFormField<T, String> {
specialTextSpanBuilder: specialTextSpanBuilder,
scribbleEnabled: scribbleEnabled,
enableIMEPersonalizedLearning: enableIMEPersonalizedLearning,
cursorOpacityAnimates:cursorOpacityAnimates,
cursorErrorColor:cursorErrorColor,
onTapAlwaysCalled:onTapAlwaysCalled,
onTapOutside:onTapOutside,
buildCounter:buildCounter,
clipBehavior:clipBehavior,
contentInsertionConfiguration:contentInsertionConfiguration,
extendedContextMenuBuilder:extendedContextMenuBuilder,
canRequestFocus:canRequestFocus,
magnifierConfiguration:magnifierConfiguration,
cursorOpacityAnimates: cursorOpacityAnimates,
cursorErrorColor: cursorErrorColor,
onTapAlwaysCalled: onTapAlwaysCalled,
onTapOutside: onTapOutside,
buildCounter: buildCounter,
clipBehavior: clipBehavior,
contentInsertionConfiguration: contentInsertionConfiguration,
extendedContextMenuBuilder: extendedContextMenuBuilder,
canRequestFocus: canRequestFocus,
magnifierConfiguration: magnifierConfiguration,
);
},
);
Expand Down
7 changes: 3 additions & 4 deletions packages/reactive_extended_text_field/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: reactive_extended_text_field
description: Wrapper around extended_text_field to use with reactive_forms.
version: 3.0.0
version: 3.0.1
repository: https://github.com/artflutter/reactive_forms_widgets/tree/master/packages/reactive_extended_text_field
issue_tracker: https://github.com/artflutter/reactive_forms_widgets/issues

Expand All @@ -12,19 +12,18 @@ dependencies:
flutter:
sdk: flutter
reactive_forms: ">=16.0.0 <18.0.0"
extended_text_field: ^14.0.0
extended_text_field: ^15.0.0

dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^3.0.2
flutter_lints: ^4.0.0

# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec

# The following section is specific to Flutter.
flutter:

# To add assets to your package, add an assets section, like this:
# assets:
# - images/a_dot_burr.jpeg
Expand Down

0 comments on commit d27901c

Please sign in to comment.