shadcn_ui-context-menu

Installation
SKILL.md

Shadcn UI — Context Menu

Instructions

ShadContextMenuRegion wraps a child and shows a menu on right-click. Set items to a list of ShadContextMenuItem or ShadContextMenuItem.inset. Use ShadContextMenuItem with items for submenus; use Divider(height: 8) and Padding for sections and labels.

Basic usage

ShadContextMenuRegion(
  constraints: const BoxConstraints(minWidth: 300),
  items: [
    const ShadContextMenuItem.inset(child: Text('Back')),
    const ShadContextMenuItem.inset(
      enabled: false,
      child: Text('Forward'),
    ),
    const ShadContextMenuItem.inset(child: Text('Reload')),
    const ShadContextMenuItem.inset(
Related skills

More from serverpod/skills-registry

Installs
7
GitHub Stars
8
First Seen
Apr 13, 2026