DropdownTextSearch<T> constructor
const
DropdownTextSearch<T> ({
- Key? key,
- double? overlayHeight,
- required List<
T> items, - required Widget itemBuilder(
- T item
- required String itemToString(
- T item
- bool filterFnc(
- String text,
- T item
- dynamic onChange(
- T item
- TextEditingController? controller,
- InputDecoration? decorator,
- FocusScopeNode? node,
- Color? hoverColor,
- Color? highlightColor,
- Color? tileColor,
- String? noItemFoundText,
- TextStyle? textFieldStyle,
Implementation
const DropdownTextSearch({
Key? key,
this.overlayHeight,
required this.items,
required this.itemBuilder,
required this.itemToString,
this.filterFnc,
this.onChange,
this.controller,
this.decorator,
this.node,
this.hoverColor,
this.highlightColor,
this.tileColor,
this.noItemFoundText,
this.textFieldStyle,
}) : super(key: key);