FLUTTER ECOSYSTEM

credifit-br/flutter-autocomplete-textfield

Um campo de texto com autocompletar para o flutter

Capa do projeto flutter-campo-de-texto-com-autocompletar
Stars
3
Forks
3
Último push (UTC)
22 de abr. de 2021
Status do projeto
Ativo
Credifit GitHub avatar
GITHUB Organization

Credifit ↗

Credifit

LinguagensC++DartCMakeHTMLSwiftCKotlinObjective-C

Pacotes publicados por este repositório

Dependências usadas

Lista de dependências 1 itens
  • flutter{"sdk":"flutter"}

README original

Texto original em inglês. Visite o GitHub para a versão atual.

Expandir / recolher 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