AutoComplete constructor
const
AutoComplete({
- Key? key,
- required List<
String> suggestions, - required Widget child,
- BoxConstraints? popoverConstraints,
- PopoverConstraint? popoverWidthConstraint,
- AlignmentDirectional? popoverAnchorAlignment,
- AlignmentDirectional? popoverAlignment,
- AutoCompleteMode mode = AutoCompleteMode.replaceWord,
- AutoCompleteCompleter completer = _defaultCompleter,
Implementation
const AutoComplete({
super.key,
required this.suggestions,
required this.child,
this.popoverConstraints,
this.popoverWidthConstraint,
this.popoverAnchorAlignment,
this.popoverAlignment,
this.mode = AutoCompleteMode.replaceWord,
this.completer = _defaultCompleter,
});