MinSelect<T> constructor
const
MinSelect<T> ({
- Key? key,
- required List<
MinSelectItem< options,T> > - required T? value,
- required ValueChanged<
T?> onChanged, - String? placeholder,
- MinSelectSize size = MinSelectSize.md,
- bool disabled = false,
- FocusNode? focusNode,
- bool autofocus = false,
- String? semanticLabel,
- MinUiAnchorSide? side,
- double? maxMenuHeight,
- Widget? icon,
- bool searchable = false,
- String? searchPlaceholder,
Implementation
const MinSelect({
super.key,
required this.options,
required this.value,
required this.onChanged,
this.placeholder,
this.size = MinSelectSize.md,
this.disabled = false,
this.focusNode,
this.autofocus = false,
this.semanticLabel,
this.side,
this.maxMenuHeight,
this.menuWidth,
this.icon,
this.searchable = false,
this.searchPlaceholder,
});