shadcn_ui-popover

Installation
SKILL.md

Shadcn UI — Popover

Instructions

ShadPopover displays rich content in a portal, triggered by a button (or other trigger). Use a ShadPopoverController() to control open/close; call popoverController.toggle from the trigger. Pass popover: (context) => ... returning the overlay widget (e.g. a SizedBox with form fields); child is the trigger widget.

Basic usage

final popoverController = ShadPopoverController();

// dispose: popoverController.dispose();

ShadPopover(
  controller: popoverController,
  popover: (context) => SizedBox(
    width: 288,
    child: Column(
      crossAxisAlignment: CrossAxisAlignment.start,
Related skills

More from serverpod/skills-registry

Installs
6
GitHub Stars
8
First Seen
Apr 13, 2026