VDropdownTextButton constructor

const VDropdownTextButton({
  1. Key? key,
  2. required List<PopupMenuEntry> itemBuilder(
    1. BuildContext
    ),
  3. required String buttonText,
  4. bool isDisabled = false,
  5. Widget? icons,
  6. bool isIconBig = false,
  7. required void onSelected(
    1. dynamic
    ),
  8. void onCanceled()?,
  9. bool isSecTheme = false,
  10. VDropdownTextButtonStyle? style,
  11. VExt? vExt,
  12. PopupMenuPosition? position = PopupMenuPosition.under,
  13. 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);