tamagui

Universal React UI framework for web and native with an optimizing compiler.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "tamagui" with this command: npx skills add tamagui/tamagui/tamagui-tamagui-tamagui

Tamagui Skill

Universal React UI framework for web and native with an optimizing compiler.

Getting Project-Specific Config

Before writing Tamagui code, get the project's actual configuration:

npx tamagui generate-prompt

This outputs tamagui-prompt.md with the project's specific:

  • Design tokens (space, size, radius, color, zIndex)

  • Theme names and hierarchy

  • Available components

  • Media query breakpoints

  • Shorthand properties

  • Font families

Always reference this file for token/theme/media query names rather than guessing or using defaults.

Core Concepts

styled() Function

Create components by extending existing ones:

import { View, Text, styled } from '@tamagui/core'

const Card = styled(View, { padding: '$4', // use tokens with $ backgroundColor: '$background', borderRadius: '$4',

variants: { size: { small: { padding: '$2' }, large: { padding: '$6' }, }, elevated: { true: { shadowColor: '$shadowColor', shadowRadius: 10, }, }, } as const, // required for type inference

defaultVariants: { size: 'small', }, })

// usage <Card size="large" elevated />

Key rules:

  • Always use as const on variants objects

  • Tokens use $ prefix: $4 , $background , $color11

  • Prop order matters - later props override earlier ones

  • Variants defined later in the object override earlier ones

Stack Components

import { XStack, YStack, ZStack } from 'tamagui'

// XStack = flexDirection: 'row' // YStack = flexDirection: 'column' // ZStack = position: 'relative' with absolute children

<YStack gap="$4" padding="$4"> <XStack justifyContent="space-between" alignItems="center"> <Text>Label</Text> <Button>Action</Button> </XStack> </YStack>

Themes

Themes nest and combine hierarchically:

import { Theme } from 'tamagui'

// base theme <Theme name="dark"> {/* sub-theme /} <Theme name="blue"> {/ uses dark_blue theme */} <Button>Blue button on dark</Button> </Theme> </Theme>

// access theme values const theme = useTheme() console.log(theme.background.val) // actual color value console.log(theme.color11.val) // high contrast text

12-step color scale convention:

  • $color1-4 : backgrounds (subtle to emphasized)

  • $color5-6 : borders, separators

  • $color7-8 : hover/active states

  • $color9-10 : solid backgrounds

  • $color11-12 : text (low to high contrast)

Responsive Styles

Use media query props (check your tamagui-prompt.md for actual breakpoint names):

<YStack padding="$4" $gtSm={{ padding: '$6' }} // check your config for actual names $gtMd={{ padding: '$8' }} flexDirection="column" $gtLg={{ flexDirection: 'row' }} />

// or with hook const media = useMedia() if (media.gtMd) { // render for medium+ screens }

Animations

import { AnimatePresence } from 'tamagui'

<AnimatePresence> {show && ( <YStack key="modal" // key required for exit animations animation="quick" enterStyle={{ opacity: 0, y: -20 }} exitStyle={{ opacity: 0, y: 20 }} opacity={1} y={0} /> )} </AnimatePresence>

Animation drivers:

  • @tamagui/animations-css

  • web only, CSS transitions

  • @tamagui/animations-react-native

  • native Animated API

  • @tamagui/animations-reanimated

  • best native performance

  • @tamagui/animations-motion

  • spring physics

CSS driver uses easing strings, others support spring physics.

Compound Components

Use createStyledContext for components that share state:

import { createStyledContext, styled, View, Text } from '@tamagui/core' import { withStaticProperties } from '@tamagui/helpers'

const CardContext = createStyledContext({ size: 'medium' as 'small' | 'medium' | 'large' })

const CardFrame = styled(View, { context: CardContext, padding: '$4', backgroundColor: '$background',

variants: { size: { small: { padding: '$2' }, medium: { padding: '$4' }, large: { padding: '$6' }, }, } as const, })

const CardTitle = styled(Text, { context: CardContext, // inherits size from parent fontWeight: 'bold',

variants: { size: { small: { fontSize: '$4' }, medium: { fontSize: '$5' }, large: { fontSize: '$6' }, }, } as const, })

export const Card = withStaticProperties(CardFrame, { Title: CardTitle, })

// usage - size cascades to children <Card size="large"> <Card.Title>Large Title</Card.Title> </Card>

Common Patterns

Dialog with Adapt (Sheet on Mobile)

import { Dialog, Sheet, Adapt, Button } from 'tamagui'

<Dialog> <Dialog.Trigger asChild> <Button>Open</Button> </Dialog.Trigger>

<Adapt when="sm" platform="touch"> <Sheet modal dismissOnSnapToBottom> <Sheet.Frame padding="$4"> <Adapt.Contents /> </Sheet.Frame> <Sheet.Overlay /> </Sheet> </Adapt>

<Dialog.Portal> <Dialog.Overlay key="overlay" animation="quick" opacity={0.5} enterStyle={{ opacity: 0 }} exitStyle={{ opacity: 0 }} /> <Dialog.Content key="content" animation="quick" enterStyle={{ opacity: 0, scale: 0.95 }} exitStyle={{ opacity: 0, scale: 0.95 }} > <Dialog.Title>Title</Dialog.Title> <Dialog.Description>Description</Dialog.Description> <Dialog.Close asChild> <Button>Close</Button> </Dialog.Close> </Dialog.Content> </Dialog.Portal> </Dialog>

Form with Input/Label

import { Input, Label, YStack, XStack, Button } from 'tamagui'

<YStack gap="$4" padding="$4"> <YStack gap="$2"> <Label htmlFor="email">Email</Label> <Input id="email" placeholder="email@example.com" autoCapitalize="none" keyboardType="email-address" /> </YStack>

<XStack gap="$2" justifyContent="flex-end"> <Button variant="outlined">Cancel</Button> <Button theme="blue">Submit</Button> </XStack> </YStack>

Anti-Patterns

❌ Hardcoded values instead of tokens

// bad <View padding={16} backgroundColor="#fff" />

// good - uses design tokens <View padding="$4" backgroundColor="$background" />

❌ Missing as const on variants

// bad - TypeScript can't infer variant types variants: { size: { small: {...}, large: {...} } }

// good variants: { size: { small: {...}, large: {...} } } as const

❌ Platform detection in styled()

// bad - won't be extracted by compiler const Box = styled(View, { padding: Platform.OS === 'web' ? 10 : 20, })

// good - use platform modifiers const Box = styled(View, { padding: 20, '$platform-web': { padding: 10 }, })

❌ exitStyle without AnimatePresence

// bad - exit animation won't work {show && <View exitStyle={{ opacity: 0 }} />}

// good <AnimatePresence> {show && <View key="box" exitStyle={{ opacity: 0 }} />} </AnimatePresence>

❌ Dynamic values that prevent extraction

// bad - runtime variable prevents compiler extraction const dynamicPadding = isPremium ? '$6' : '$4' <View padding={dynamicPadding} />

// good - inline ternary is extractable <View padding={isPremium ? '$6' : '$4'} />

❌ Wrong media query order

// bad - base value overrides responsive <View $gtMd={{ padding: '$8' }} padding="$4" />

// good - base first, then responsive overrides <View padding="$4" $gtMd={{ padding: '$8' }} />

❌ Spring animations with CSS driver

// bad - CSS driver doesn't support spring physics import { createAnimations } from '@tamagui/animations-css' const anims = createAnimations({ bouncy: { type: 'spring', damping: 10 } // won't work })

// good for CSS driver - use easing strings const anims = createAnimations({ bouncy: 'cubic-bezier(0.68, -0.55, 0.265, 1.55) 300ms' })

Compiler Optimization

The Tamagui compiler extracts static styles to CSS at build time. For styles to be extracted:

  • Use tokens - $4 extracts, 16 may not

  • Inline ternaries - padding={x ? '$4' : '$2'} extracts

  • Avoid runtime variables - computed values don't extract

  • Use variants - better than conditional props

Check if extraction is working:

  • Look for data-tamagui attributes in dev mode

  • Bundle size should be smaller with compiler enabled

  • Styles should appear as CSS classes, not inline

TypeScript

import { GetProps, styled, View } from '@tamagui/core'

const MyComponent = styled(View, { variants: { size: { small: {}, large: {} } } as const, })

// extract props type type MyComponentProps = GetProps<typeof MyComponent>

// extend with custom props interface ExtendedProps extends MyComponentProps { onCustomEvent?: () => void }

Quick Reference

Pattern Example

Token padding="$4"

Theme value backgroundColor="$background"

Color scale color="$color11" (high contrast text)

Responsive $gtSm={{ padding: '$6' }}

Variant <Button size="large" variant="outlined" />

Animation animation="quick" enterStyle={{ opacity: 0 }}

Theme switch <Theme name="dark"><Theme name="blue">

Compound <Card><Card.Title> with createStyledContext

Resources

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Interior Fullplan

# 室内设计·全案方案自动生成器

Archived SourceRecently Updated
General

kb-archiver

智能本地知识库归档系统 v1.1.0。支持 AI 智能分类、批量归档、全文搜索、统计报告。 自动将文件分类归档到本地知识库,提取全文索引支持秒级搜索。 小文件存本地、大文件可对接云存储。支持 Excel/Word/PPT/PDF/TXT 等格式。 当用户需要:归档文件、建立知识库、全文检索文档内容、管理大量工作文档、批量处理文件夹时使用。 关键词:知识库、归档、文件管理、全文搜索、文档索引、批量归档、AI分类

Archived SourceRecently Updated
General

honest-agent

强制诚实系统:防止AI撒谎、虚构、言行不一。核心功能:(1) 承诺自动追踪(写入honest-commitments.json)(2) 回复前诚实校验拦截 (3) 媒体并行识别(大模型+OCR择优)(4) 诚实审计日志 (5) 安全独立存储。触发词:诚实、撒谎、虚构、承诺、图片识别、媒体处理、我承诺、我会帮你。

Archived SourceRecently Updated
General

long-term-plan

长期计划推进技能。用于管理需要持续数天/数周的任务,采用滚动节点式规划(每3-5天为一个阶段,阶段结束时复盘并规划下一阶段)。支持自动日期计算、每日同步、复盘统计、多任务管理、极简指令。当用户说"开一个长期计划"、"今天计划任务"、"阶段复盘"、"滚动下一阶段"、"列出所有计划"时使用。

Archived SourceRecently Updated