autocomplete_textfield 1.6.7 copy "autocomplete_textfield: ^1.6.7" to clipboard
autocomplete_textfield: ^1.6.7 copied to clipboard

outdated

A simple and versatile autocomplete text field for flutter, supporting multiple datatypes.

autocomplete_textfield #

An autocomplete textfield for flutter

pull requests #

Feel free to submit pull requests!

Pub Package Can Be Found At #

Pub Package

Breaking Changes #

TextField is set by default to call onSubmitted on a suggestion tap and also to clear the TextField on submit.

These can both be disabled with submitOnSuggestionTap and clearOnSubmit respectively.

Usage #

AutoCompleteTextField supports any data type suggestions

new AutoCompleteTextField<YOURDATATYPE>()

The suggestions parameter must have data that matches <YOURDATATYPE>

A global key of type GlobalKey<AutoCompleteTextFieldState<T>> is required so that the clear() method can be called to clear AutoCompleteTextField.

Strings and itemFilter #

Filtering is case sensitive so when using strings a common implementation of itemFilter is .
itemFilter: (item, query) { return item.toLowerCase().startsWith(query.toLowerCase()); }

197
likes
0
pub points
98%
popularity

Publisher

verified publisherfelixmccuaig.com

A simple and versatile autocomplete text field for flutter, supporting multiple datatypes.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on autocomplete_textfield