NUIDropDownButton<T> constructor
NUIDropDownButton<T> ({
- required NUIDropDownButtonBuilder buttonBuilder,
- required NUIItemDropDownButtonBuilder itemBuilder,
- NUIDropDownButtonController? controller,
- bool animate = true,
- NUIDropDownCustomPosition? customPosition,
- Color overlayColor = Colors.transparent,
- BoxDecoration? dropdownDecoration,
- Offset? positionOffset,
- double? customWidth,
- double? maxHeight,
- required List<
T> selections, - EdgeInsets? overallPadding,
Implementation
NUIDropDownButton({
required this.buttonBuilder,
required this.itemBuilder,
this.controller,
this.animate = true,
this.customPosition,
this.overlayColor = Colors.transparent,
this.dropdownDecoration,
this.positionOffset,
this.customWidth,
this.maxHeight,
required this.selections,
this.overallPadding
});