FLUTTER ECOSYSTEM

felixmccuaig/flutter-autocomplete-textfield

适用于 Flutter 的自动补全文本框

flutter-自动完成文本字段 项目封面
Stars
178
Forks
128
最近推送(UTC)
2023年2月12日
项目状态
未归档
Felix GitHub avatar
GITHUB User

Felix ↗

Lyrebird HealthMelbourne
语言DartObjective-CShellJava

技术话题

使用的依赖

依赖清单 2 项
  • flutter{"sdk":"flutter"}
  • flutter_test开发依赖{"sdk":"flutter"}

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

autocomplete_textfield

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 as I no longer use Flutter frequently.

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());
}
https://raw.githubusercontent.com/felixmccuaig/flutter-autocomplete-textfield/HEAD/textfield-demo.gif