shadcn_ui-toast
Installation
SKILL.md
Shadcn UI — Toast
Instructions
Toasts are succinct temporary messages. Ensure a toaster is in the tree (e.g. ShadToaster). Get it with ShadToaster.of(context). Call toaster.show(ShadToast(...)) to show a toast; use toaster.hide() to dismiss (e.g. from an action button). Use ShadToast with optional title, description, and action. Use ShadToast.destructive for error-style toasts with a destructive action button (use ShadDecoration to style the action border).
Simple
ShadToaster.of(context).show(
const ShadToast(
description: Text('Your message has been sent.'),
),
);