FLUTTER ECOSYSTEM

credifit-br/flutter-autocomplete-textfield

適用於 Flutter 的自動補全文字方塊

flutter-自動完成文字欄位 專案封面
Stars
3
Forks
3
最近推送(UTC)
2021年4月22日
專案狀態
未封存
Credifit GitHub avatar
GITHUB Organization

Credifit ↗

Credifit

語言C++DartCMakeHTMLSwiftCKotlinObjective-C

此儲存庫發佈的套件

使用的依賴

依賴清單 1 項
  • flutter{"sdk":"flutter"}

原始 README

以下為英文專案原文快照,最新內容請造訪 GitHub。

展開 / 收合專案 README

autocomplete_textfield_ns

An autocomplete textfield for flutter

Pull requests

Feel free to submit pull requests for desired changes / features / bug fixes... It makes the maintenance of this code much easier.

Usage

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.

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());
}

Textfield Demo