shadcn_ui-calendar
Installation
SKILL.md
Shadcn UI — Calendar
Instructions
ShadCalendar is a date field that lets users enter and edit dates. Modes: single date, multiple dates (ShadCalendar.multiple), or range (ShadCalendar.range). Use fromMonth/toMonth to limit range; captionLayout for dropdown months/years.
Single
final today = DateTime.now();
ShadCalendar(
selected: today,
fromMonth: DateTime(today.year - 1),
toMonth: DateTime(today.year, 12),
)