shadcn_ui-sheet

Installation
SKILL.md

Shadcn UI — Sheet

Instructions

Sheets extend the dialog pattern to display content from an edge of the screen. Use showShadSheet(context: context, side: ShadSheetSide.*, builder: (context) => ShadSheet(...)). side can be ShadSheetSide.top, ShadSheetSide.right, ShadSheetSide.bottom, or ShadSheetSide.left. Return a ShadSheet with optional title, description, child (body), and actions. Use constraints (e.g. BoxConstraints(maxWidth: 512) for left/right) to limit width or height.

Basic (right side)

showShadSheet(
  side: ShadSheetSide.right,
  context: context,
  builder: (context) => ShadSheet(
    constraints: const BoxConstraints(maxWidth: 512),
    title: const Text('Edit Profile'),
    description: const Text(
      "Make changes to your profile here. Click save when you're done",
    ),
    child: Padding(
Related skills

More from serverpod/skills-registry

Installs
6
GitHub Stars
8
First Seen
Apr 13, 2026