drop_down_search_field library
Classes
-
DropDownSearchField<
T> - Flutter DropDownSearchField
-
DropDownSearchFormField<
T> -
A FormField
implementation of
DropdownSearchField
, that allows the value to be saved, validated, etc. -
MultiSelectDropdownSearchFormField<
T> -
MultiSelectDropdownSearchFormFieldState<
T> - ScrollBarDecoration
-
This file defines the
ScrollBarDecoration
class, which is used to customize the appearance of a scrollbar in a Flutter application. A class that defines the decoration for a scrollbar. - SuggestionsBox
- SuggestionsBoxController
- Supply an instance of this class to the DropDownSearchField.suggestionsBoxController property to manually control the suggestions box
- SuggestionsBoxDecoration
- Supply an instance of this class to the DropDownSearchField.suggestionsBoxDecoration property to configure the suggestions box decoration
-
SuggestionsList<
T> -
Renders all the suggestions using a ListView as default. If
layoutArchitecture
is specified, uses that instead. - TextFieldConfiguration
- Supply an instance of this class to the DropDownSearchField.textFieldConfiguration property to configure the displayed text field
Typedefs
- AnimationTransitionBuilder = Widget Function(BuildContext context, Widget child, AnimationController? controller)
- ErrorBuilder = Widget Function(BuildContext context, Object? error)
-
ItemBuilder<
T> = Widget Function(BuildContext context, T itemData) -
LayoutArchitecture
= Widget Function(Iterable<
Widget> items, ScrollController controller) -
PaginatedSuggestionsCallback<
T> = FutureOr< Iterable< Function(String pattern)T> > -
SuggestionMultiSelectionCallback<
T> = void Function(T suggestion, bool selected) -
SuggestionsCallback<
T> = FutureOr< Iterable< Function(String pattern)T> > -
SuggestionSelectionCallback<
T> = void Function(T suggestion)