FloatingContextMenu constructor
const
FloatingContextMenu({ - Key? key,
- Alignment alignment = Alignment.bottomCenter,
- required List<ContextMenuItem> actions,
- required Widget child,
- bool moveDownwards = true,
- EdgeInsets margin = EdgeInsets.zero,
- void onOpened()?,
- void onClosed()?,
- 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,
});