shadcn_ui-tabs

Installation
SKILL.md

Shadcn UI — Tabs

Instructions

ShadTabs<T> displays layered sections (tab panels) one at a time. Provide value (currently selected tab value), tabs (list of ShadTab<T>), and optional tabBarConstraints and contentConstraints. Each ShadTab has value, child (tab label), and content (panel widget).

Basic

ShadTabs<String>(
  value: 'account',
  tabBarConstraints: const BoxConstraints(maxWidth: 400),
  contentConstraints: const BoxConstraints(maxWidth: 400),
  tabs: [
    ShadTab(
      value: 'account',
      content: ShadCard(
        title: const Text('Account'),
        description: const Text(
Related skills

More from serverpod/skills-registry

Installs
6
GitHub Stars
8
First Seen
Apr 13, 2026