Button
Install
Section titled “Install”npx stylesheet-ui add buttonimport { Button } from "@/components/ui/button";
<Button onPress={() => {}}>Primary</Button><Button variant="secondary" size="lg">Secondary</Button><Button variant="destructive" loading>Deleting…</Button>Sizing
Section titled “Sizing”Buttons shrink to fit their content by default — matching web, React Native Paper, and gluestack conventions. Pass fullWidth to stretch the button across its parent’s width, useful for primary CTAs in forms, cards, and sheets.
<Button>Save</Button> // sizes to "Save"<Button fullWidth>Save</Button> // fills parent width