v2.0.0autocomplete_textfield_ns
फ्लटर के लिए एक सरल और विश्वव्यापी स्वचालित पूर्ण करने वाला टेक्स्ट फ़ील्ड, जो कई डेटाटाइप्स को समर्थन करता है।
फ्लटर के लिए एक सुझाव वाला टेक्स्टफील्ड
{"sdk":"flutter"}यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
An autocomplete textfield for flutter
Feel free to submit pull requests for desired changes / features / bug fixes... It makes the maintenance of this code much easier.
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.
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