Skip to content

Commit 2771019

Browse files
Merge pull request #1406 from LouisHaftmann/feat/FormBuilderTextField/set-enableSuggestions-default-true
feat(FormBuilderTextField): #1334 set `enableSuggestions` default to `true`
2 parents acb7364 + 901e7e9 commit 2771019

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/fields/form_builder_text_field.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ class FormBuilderTextField extends FormBuilderFieldDecoration<String> {
340340
this.showCursor,
341341
this.onTap,
342342
this.onTapOutside,
343-
this.enableSuggestions = false,
343+
this.enableSuggestions = true,
344344
this.textAlignVertical,
345345
this.dragStartBehavior = DragStartBehavior.start,
346346
this.scrollController,

0 commit comments

Comments
 (0)