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