Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ class ReactiveLanguageToolTextField<T> extends ReactiveFormField<T, String> {
bool expands = false,
int? maxLength,
GestureTapCallback? onTap,
void Function(PointerDownEvent)? onTapOutside,
VoidCallback? onEditingComplete,
List<TextInputFormatter>? inputFormatters,
double cursorWidth = 2.0,
Expand Down Expand Up @@ -198,7 +199,7 @@ class ReactiveLanguageToolTextField<T> extends ReactiveFormField<T, String> {
// textAlignVertical: textAlignVertical,
textDirection: textDirection,
// textCapitalization: textCapitalization,
// autofocus: autofocus,
autoFocus: autofocus,
readOnly: readOnly,
// showCursor: showCursor,
// obscureText: obscureText,
Expand All @@ -219,7 +220,10 @@ class ReactiveLanguageToolTextField<T> extends ReactiveFormField<T, String> {
// maxLength: maxLength,
// onChanged: field.didChange,
onTap: onTap,
// onSubmitted: onSubmitted != null ? (_) => onSubmitted() : null,
onTapOutside: onTapOutside,
onTextChange: field.didChange,
onTextSubmitted:
onSubmitted != null ? (_) => onSubmitted() : null,
// onEditingComplete: onEditingComplete,
// inputFormatters: inputFormatters,
// enabled: field.control.enabled,
Expand Down
2 changes: 1 addition & 1 deletion packages/reactive_languagetool_textfield/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: reactive_languagetool_textfield
description: Wrapper around languagetool_textfield to use with reactive_forms.
version: 0.0.1
version: 0.0.2
repository: https://github.com/artflutter/reactive_forms_widgets/tree/master/packages/reactive_languagetool_textfield
issue_tracker: https://github.com/artflutter/reactive_forms_widgets/issues

Expand Down