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 @@ -274,6 +274,9 @@ class FormBuilderTextField extends FormBuilderFieldDecoration<String> {
274
274
/// By default `false`
275
275
final bool readOnly;
276
276
277
+ /// {@macro flutter.widgets.editableText.contentInsertionConfiguration}
278
+ final ContentInsertionConfiguration ? contentInsertionConfiguration;
279
+
277
280
/// Creates a Material Design text field input.
278
281
FormBuilderTextField ({
279
282
super .key,
@@ -333,6 +336,7 @@ class FormBuilderTextField extends FormBuilderFieldDecoration<String> {
333
336
this .mouseCursor,
334
337
this .contextMenuBuilder = _defaultContextMenuBuilder,
335
338
this .magnifierConfiguration,
339
+ this .contentInsertionConfiguration,
336
340
}) : assert (initialValue == null || controller == null ),
337
341
assert (minLines == null || minLines > 0 ),
338
342
assert (maxLines == null || maxLines > 0 ),
@@ -401,6 +405,7 @@ class FormBuilderTextField extends FormBuilderFieldDecoration<String> {
401
405
obscuringCharacter: obscuringCharacter,
402
406
autofillHints: autofillHints,
403
407
magnifierConfiguration: magnifierConfiguration,
408
+ contentInsertionConfiguration: contentInsertionConfiguration,
404
409
);
405
410
},
406
411
);
You can’t perform that action at this time.
0 commit comments