felixmccuaig / flutter-autocomplete-textfield

An autocomplete Textfield for flutter
MIT License
181 stars 131 forks source link

Is there a way to use Stream suggestions from firebase? #107

Closed Karlheinzniebuhr closed 3 years ago

Karlheinzniebuhr commented 3 years ago

I'd like to consume a stream of suggestions from firebase. But I haven't found a way to do this with AutoCompleteTextField.

Molkars commented 3 years ago

You'd need to call the updateSuggestions method from AutoCompleteTextFieldState in your listen callback for the stream.

Karlheinzniebuhr commented 3 years ago

That worked, thanks!