VDropdownTextButton constructor
const
VDropdownTextButton({
- Key? key,
- required List<
PopupMenuEntry> itemBuilder(), - required String buttonText,
- bool isDisabled = false,
- Widget? icons,
- bool isIconBig = false,
- required void onSelected(
- dynamic
- void onCanceled()?,
- bool isSecTheme = false,
- VDropdownTextButtonStyle? style,
- VExt? vExt,
- PopupMenuPosition? position = PopupMenuPosition.under,
- Offset offset = const Offset(0, 10),
Implementation
const VDropdownTextButton({
Key? key,
// required this.dropdownOptions,
required this.itemBuilder,
required this.buttonText,
this.isDisabled = false,
this.icons,
this.isIconBig = false,
required this.onSelected,
this.onCanceled,
this.isSecTheme = false,
this.style,
this.vExt,
this.position = PopupMenuPosition.under,
this.offset = const Offset(0, 10),
}) : super(key: key);