SelectPopup<T> constructor
const
SelectPopup<T> ({
- Key? key,
- required ValueListenable<
List< value,T> > - SearchFilter<
T> ? searchFilter, - BoxConstraints? constraints,
- SelectValueChanged<
T> ? onChanged, - String? searchPlaceholder,
- WidgetBuilder? emptyBuilder,
- bool orderSelectedFirst = true,
- double? surfaceBlur,
- double? surfaceOpacity,
- bool autoClose = true,
- SelectSearch? onSearch,
- required EdgeInsetsGeometry margin,
- required BorderRadiusGeometry borderRadius,
- required ValueListenable<
List< children,AbstractSelectItem< >T> >
Implementation
const SelectPopup({
super.key,
required this.value,
this.searchFilter,
this.constraints,
this.showUnrelatedValues = false,
this.onChanged,
this.searchPlaceholder,
this.emptyBuilder,
this.orderSelectedFirst = true,
this.surfaceBlur,
this.surfaceOpacity,
this.autoClose = true,
this.onSearch,
required this.margin,
required this.borderRadius,
required this.children,
});