File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -146,6 +146,9 @@ class FormBuilderCupertinoTextField extends FormBuilderField<String> {
146146 /// [TextInputAction.previous] for [textInputAction].
147147 final ValueChanged <String ?>? onSubmitted;
148148
149+ /// {@macro flutter.widgets.editableText.onTapOutside}
150+ final TapRegionCallback ? onTapOutside;
151+
149152 /// {@macro flutter.widgets.editableText.inputFormatters}
150153 final List <TextInputFormatter >? inputFormatters;
151154
@@ -339,6 +342,7 @@ class FormBuilderCupertinoTextField extends FormBuilderField<String> {
339342 this .minLines,
340343 this .showCursor,
341344 this .onTap,
345+ this .onTapOutside,
342346 this .enableSuggestions = false ,
343347 this .textAlignVertical,
344348 this .dragStartBehavior = DragStartBehavior .start,
@@ -416,6 +420,7 @@ class FormBuilderCupertinoTextField extends FormBuilderField<String> {
416420 expands: expands,
417421 maxLength: maxLength,
418422 onTap: onTap,
423+ onTapOutside: onTapOutside,
419424 onEditingComplete: onEditingComplete,
420425 onSubmitted: onSubmitted,
421426 inputFormatters: inputFormatters,
You can’t perform that action at this time.
0 commit comments