ArcaneContextMenu
Use context menus for secondary actions attached to a specific trigger or surface.
Live Demo
Component: context-menu
Preview + Code
Code
ArcaneContextMenu(
  trigger: Button.secondary(label: 'Right-click me', onPressed: () {}),
  items: const [
    MenuItemAction(label: 'Copy'),
    MenuItemAction(label: 'Rename'),
    MenuItemSeparator(),
    MenuItemCheckbox(label: 'Pinned', checked: true),
  ],
)

ArcaneContextMenu#

Use context menus for secondary actions attached to a specific trigger or surface.

The live preview and code sample above use the neutral package:arcane_jaspr/arcane_jaspr.dart API. The selected stylesheet owns spacing, density, radius, color, and interaction styling, so the same app code can render differently under Shadcn or Neon.

Source: lib/component/menu/context_menu.dart

See the Component Catalog for the full exported surface and source mapping.