v2.0.0autocomplete_textfield_ns
一個簡單且多功能的 Flutter 自動補全文字欄位,支援多種資料類型。
31喜歡 818近 30 天下載130Pub 分數
AndroidiOSWebmacOSWindowsLinux
適用於 Flutter 的自動補全文字方塊
{"sdk":"flutter"}以下為英文專案原文快照,最新內容請造訪 GitHub。
An autocomplete textfield for flutter
Feel free to submit pull requests for desired changes / features / bug fixes... It makes the maintenance of this code much easier.
AutoCompleteTextField supports any data type suggestions
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.
Filtering is case sensitive so when using strings a common implementation of itemFilter is .
itemFilter: (item, query) {
return item.toLowerCase().startsWith(query.toLowerCase());
}
Textfield Demo