widgets/autocomplete library Widgets

An autocomplete provides a list of suggestions based on the user's input and shows typeahead text for the first match.

See https://forui.dev/docs/form/autocomplete for working examples.

Classes

FAutocomplete
An autocomplete provides a list of suggestions based on the user's input and shows typeahead text for the first match.
FAutocompleteContentStyle
An FAutocomplete's content style.
FAutocompleteController
A controller for managing autocomplete functionality in a text field.
FAutocompleteItem
A suggestion in a FAutocomplete that can optionally be nested in a FAutocompleteSection.
FAutocompleteSection
A section in a FAutocomplete that can contain multiple FAutocompleteItems.
FAutocompleteSectionStyle
A FAutocompleteSection's style.
FAutocompleteStyle
An FAutocomplete's style.

Mixins

FAutocompleteItemMixin
A marker interface which denotes that mixed-in widgets can be used in a FAutocomplete.

Extensions

$FAutocompleteContentStyleCopyWith on FAutocompleteContentStyle
Provides a copyWith method.
$FAutocompleteSectionStyleCopyWith on FAutocompleteSectionStyle
Provides a copyWith method.
$FAutocompleteStyleCopyWith on FAutocompleteStyle
Provides a copyWith method.

Typedefs

FAutoCompleteContentBuilder = List<FAutocompleteItemMixin> Function(BuildContext context, String query, Iterable<String> values)
A builder for FAutocomplete's results.