FLUTTER ECOSYSTEM

credifit-br/flutter-autocomplete-textfield

फ्लटर के लिए एक सुझाव वाला टेक्स्टफील्ड

flutter-स्वचालित पूरा टेक्स्टफील्ड प्रोजेक्ट कवर
Stars
3
Forks
3
अंतिम पुश (UTC)
22 अप्रैल 2021
प्रोजेक्ट स्थिति
सक्रिय
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