@@ -274,6 +274,9 @@ class FormBuilderCupertinoTextField extends FormBuilderField<String> {
274
274
/// Defaults to never appearing and cannot be null.
275
275
final OverlayVisibilityMode clearButtonMode;
276
276
277
+ /// {@macro flutter.widgets.editableText.contentInsertionConfiguration}
278
+ final ContentInsertionConfiguration ? contentInsertionConfiguration;
279
+
277
280
FormBuilderCupertinoTextField ({
278
281
super .key,
279
282
required super .name,
@@ -338,6 +341,7 @@ class FormBuilderCupertinoTextField extends FormBuilderField<String> {
338
341
this .enableIMEPersonalizedLearning = true ,
339
342
this .scribbleEnabled = true ,
340
343
this .clearButtonMode = OverlayVisibilityMode .never,
344
+ this .contentInsertionConfiguration,
341
345
}) : assert (maxLines == null || maxLines > 0 ),
342
346
assert (minLines == null || minLines > 0 ),
343
347
assert (
@@ -413,6 +417,7 @@ class FormBuilderCupertinoTextField extends FormBuilderField<String> {
413
417
enableIMEPersonalizedLearning: enableIMEPersonalizedLearning,
414
418
scribbleEnabled: scribbleEnabled,
415
419
clearButtonMode: clearButtonMode,
420
+ contentInsertionConfiguration: contentInsertionConfiguration,
416
421
);
417
422
418
423
return CupertinoFormRow (
0 commit comments