ContextMenuRegion constructor

const ContextMenuRegion({
  1. Key? key,
  2. Widget? child,
  3. Widget builder(
    1. bool
    )?,
  4. bool enabled = true,
  5. bool moveDownwards = true,
  6. bool preventContextMenu = true,
  7. bool enableLongTap = true,
  8. bool enablePrimaryTap = false,
  9. bool enableSecondaryTap = true,
  10. Alignment alignment = Alignment.bottomCenter,
  11. List<ContextMenuItem> actions = const [],
  12. GlobalKey<State<StatefulWidget>>? selector,
  13. bool selectorClosable = true,
  14. double width = 260,
  15. EdgeInsets margin = EdgeInsets.zero,
  16. bool indicateOpenedMenu = false,
  17. bool unconstrained = false,
})

Implementation

const ContextMenuRegion({
  super.key,
  this.child,
  this.builder,
  this.enabled = true,
  this.moveDownwards = true,
  this.preventContextMenu = true,
  this.enableLongTap = true,
  this.enablePrimaryTap = false,
  this.enableSecondaryTap = true,
  this.alignment = Alignment.bottomCenter,
  this.actions = const [],
  this.selector,
  this.selectorClosable = true,
  this.width = 260,
  this.margin = EdgeInsets.zero,
  this.indicateOpenedMenu = false,
  this.unconstrained = false,
});