flutter_typeahead library

Classes

CupertinoSuggestionsBoxController
Supply an instance of this class to the TypeAhead.suggestionsBoxController property to manually control the suggestions box
CupertinoSuggestionsBoxDecoration
Supply an instance of this class to the TypeAhead.suggestionsBoxDecoration property to configure the suggestions box decoration
CupertinoTextFieldConfiguration
Supply an instance of this class to the TypeAhead.textFieldConfiguration property to configure the displayed text field. See documentation for more information on properties.
CupertinoTypeAheadField<T>
A CupertinoTextField that displays a list of suggestions as the user types
CupertinoTypeAheadFormField<T>
A FormField implementation of TypeAheadField, that allows the value to be saved, validated, etc.
CupertinoTypeAheadFormFieldState<T>
SuggestionsBoxController
Supply an instance of this class to the TypeAhead.suggestionsBoxController property to manually control the suggestions box
SuggestionsBoxDecoration
Supply an instance of this class to the TypeAhead.suggestionsBoxDecoration property to configure the suggestions box decoration
TextFieldConfiguration
Supply an instance of this class to the TypeAhead.textFieldConfiguration property to configure the displayed text field
TypeAheadField<T>
A TextField that displays a list of suggestions as the user types
TypeAheadFormField<T>
A FormField implementation of TypeAheadField, that allows the value to be saved, validated, etc.

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)
SuggestionsCallback<T> = FutureOr<Iterable<T>> Function(String pattern)
SuggestionSelectionCallback<T> = void Function(T suggestion)