search_field_autocomplete library

Classes

ScrollbarDecoration
The decoration properties of a scrollbar.
ScrollbarProperties
A properties for customizing the appearance and behavior of a scrollbar.
SearchFieldAutoComplete<T>
SearchFieldAutoCompleteItem<T>
SuggestionDecoration
The decoration properties for customizing the appearance, of individual suggestions in the autocomplete list.

Extensions

ListContainsObject on List
extension to check if a Object is present in List

Constants

elevations → const List<BoxShadow>
A list of BoxShadow objects representing elevation effects.

Typedefs

SuggestionItemBuilder<T> = Widget Function(BuildContext context, SearchFieldAutoCompleteItem<T> searchFieldItem)
building a suggestion item widget.
SuggestionItemSorter<T> = List<SearchFieldAutoCompleteItem<T>> Function(String value, List<SearchFieldAutoCompleteItem<T>> items)
sorting and filtering suggestion items based on user input.
SuggestionSelected<T> = void Function(SearchFieldAutoCompleteItem<T> searchFieldItem)
handling the selection of a suggestion.