flutter-autocomplete-textfield icon indicating copy to clipboard operation
flutter-autocomplete-textfield copied to clipboard

Can't access onTap method like TextField

Open pyjavo opened this issue 5 years ago • 1 comments

Awesome plugin! Thanks How can I access the onTap method like it is used in Text Field? Is it possible?

I want to list some suggestions if the user taps the autocomplete search field.

pyjavo avatar Aug 20 '19 16:08 pyjavo

I've solved it with:

AutoCompleteTextField<String>(
....
onFocusChanged: (bool focused) => {
                  if (focused)
                    {
                      _autoCompleteKey.currentState.filteredSuggestions =
                          suggestions
                    }
                },

justAsascha avatar Aug 23 '19 11:08 justAsascha