FloatingContextMenu constructor

const FloatingContextMenu({
  1. Key? key,
  2. Alignment alignment = Alignment.bottomCenter,
  3. required List<ContextMenuItem> actions,
  4. required Widget child,
  5. bool moveDownwards = true,
  6. EdgeInsets margin = EdgeInsets.zero,
  7. void onOpened()?,
  8. void onClosed()?,
  9. bool unconstrained = false,
})

Implementation

const FloatingContextMenu({
  super.key,
  this.alignment = Alignment.bottomCenter,
  required this.actions,
  required this.child,
  this.moveDownwards = true,
  this.margin = EdgeInsets.zero,
  this.onOpened,
  this.onClosed,
  this.unconstrained = false,
});