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> {
274274 /// By default `false`
275275 final bool readOnly;
276276
277+ /// {@macro flutter.widgets.editableText.contentInsertionConfiguration}
278+ final ContentInsertionConfiguration ? contentInsertionConfiguration;
279+
277280 /// Creates a Material Design text field input.
278281 FormBuilderTextField ({
279282 super .key,
@@ -333,6 +336,7 @@ class FormBuilderTextField extends FormBuilderFieldDecoration<String> {
333336 this .mouseCursor,
334337 this .contextMenuBuilder = _defaultContextMenuBuilder,
335338 this .magnifierConfiguration,
339+ this .contentInsertionConfiguration,
336340 }) : assert (initialValue == null || controller == null ),
337341 assert (minLines == null || minLines > 0 ),
338342 assert (maxLines == null || maxLines > 0 ),
@@ -401,6 +405,7 @@ class FormBuilderTextField extends FormBuilderFieldDecoration<String> {
401405 obscuringCharacter: obscuringCharacter,
402406 autofillHints: autofillHints,
403407 magnifierConfiguration: magnifierConfiguration,
408+ contentInsertionConfiguration: contentInsertionConfiguration,
404409 );
405410 },
406411 );
You can’t perform that action at this time.
0 commit comments