Use when building UI with gluestack-ui components. Covers component composition, variants, sizes, states, accessibility props, and platform-specific considerations for React and React Native.
View on GitHubTheBushidoCollective/han
jutsu-gluestack
February 3, 2026
Select agents to install to:
npx add-skill https://github.com/TheBushidoCollective/han/blob/main/frameworks/gluestack/skills/gluestack-components/SKILL.md -a claude-code --skill gluestack-componentsInstallation paths:
.claude/skills/gluestack-components/# gluestack-ui - Components
Expert knowledge of gluestack-ui's universal component library for building accessible, performant UI across React and React Native platforms.
## Overview
gluestack-ui provides 50+ unstyled, accessible components that work seamlessly on web and mobile. Components are copy-pasteable into your project and styled with NativeWind (Tailwind CSS for React Native).
## Key Concepts
### Component Installation
Add components using the CLI:
```bash
# Initialize gluestack-ui in your project
npx gluestack-ui init
# Add individual components
npx gluestack-ui add button
npx gluestack-ui add input
npx gluestack-ui add modal
# Add multiple components
npx gluestack-ui add button input select modal
# Add all components
npx gluestack-ui add --all
```
### Component Anatomy
Every gluestack-ui component follows a consistent pattern:
```tsx
import { Button, ButtonText, ButtonSpinner, ButtonIcon } from '@/components/ui/button';
// Components are composable with sub-components
<Button size="md" variant="solid" action="primary">
<ButtonIcon as={PlusIcon} />
<ButtonText>Add Item</ButtonText>
<ButtonSpinner />
</Button>
```
### Variants, Sizes, and Actions
Components support consistent prop APIs:
```tsx
// Button variants
<Button variant="solid">Solid</Button>
<Button variant="outline">Outline</Button>
<Button variant="link">Link</Button>
// Button sizes
<Button size="xs">Extra Small</Button>
<Button size="sm">Small</Button>
<Button size="md">Medium</Button>
<Button size="lg">Large</Button>
<Button size="xl">Extra Large</Button>
// Button actions (semantic colors)
<Button action="primary">Primary</Button>
<Button action="secondary">Secondary</Button>
<Button action="positive">Positive</Button>
<Button action="negative">Negative</Button>
```
## Core Components
### Button
Interactive button with loading states and icons:
```tsx
import { Button, ButtonText, ButtonSpinner, ButtonIcon } from '@/components/ui/button';
import { SaveIcon } from '