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> {
146
146
/// [TextInputAction.previous] for [textInputAction].
147
147
final ValueChanged <String ?>? onSubmitted;
148
148
149
+ /// {@macro flutter.widgets.editableText.onTapOutside}
150
+ final TapRegionCallback ? onTapOutside;
151
+
149
152
/// {@macro flutter.widgets.editableText.inputFormatters}
150
153
final List <TextInputFormatter >? inputFormatters;
151
154
@@ -339,6 +342,7 @@ class FormBuilderCupertinoTextField extends FormBuilderField<String> {
339
342
this .minLines,
340
343
this .showCursor,
341
344
this .onTap,
345
+ this .onTapOutside,
342
346
this .enableSuggestions = false ,
343
347
this .textAlignVertical,
344
348
this .dragStartBehavior = DragStartBehavior .start,
@@ -416,6 +420,7 @@ class FormBuilderCupertinoTextField extends FormBuilderField<String> {
416
420
expands: expands,
417
421
maxLength: maxLength,
418
422
onTap: onTap,
423
+ onTapOutside: onTapOutside,
419
424
onEditingComplete: onEditingComplete,
420
425
onSubmitted: onSubmitted,
421
426
inputFormatters: inputFormatters,
You can’t perform that action at this time.
0 commit comments