code/tamagui.dev/data/docs/components/select/1.0.0.mdx
<Description>Show a menu of items users can select from one of.</Description>
<HeroContainer> <SelectDemo /> </HeroContainer><Highlights
features={[
Comes with styling, yet completely customizable and themeable.,
Accepts animations, themes, size props and more.,
Accessible, keyboard navigable, full-featured.,
]}
/>
import { Select } from 'tamagui' // or '@tamagui/select'
export default () => (
<Select defaultValue="">
<Select.Trigger>
<Select.Value placeholder="Search..." />
</Select.Trigger>
<Select.Content>
<Select.ScrollUpButton />
<Select.Viewport>
<Select.Group>
<Select.Label />
<Select.Item>
<Select.ItemText />
</Select.Item>
</Select.Group>
</Select.Viewport>
<Select.ScrollDownButton />
</Select.Content>
</Select>
)
Contains every component for the select:
<PropsTable
data={[
{
name: 'id',
type: 'string',
description: Optional for usage with Label,
},
{
name: 'size',
type: 'SizeTokens',
description: Set the size of itself and pass to all inner elements,
},
{
name: 'children',
type: 'React.ReactNode',
description: Select children API components,
},
{
name: 'value',
type: 'string',
description: Controlled value,
},
{
name: 'defaultValue',
type: 'string',
description: Default value,
},
{
name: 'onValueChange',
type: '(value: string) => void',
description: Callback on value change,
},
{
name: 'open',
type: 'boolean',
description: Controlled open value,
},
{
name: 'defaultOpen',
type: 'boolean',
description: Default open value,
},
{
name: 'onOpenChange',
type: '(open: boolean) => void',
description: Callback on open change,
},
{
name: 'dir',
type: 'Direction',
description: Direction of text display,
},
{
name: 'name',
type: 'string',
description: For use in forms,
},
]}
/>
Extends ListItem to give sizing, icons, and more.
Extends Paragraph, adding:
<PropsTable
data={[
{
name: 'placeholder',
type: 'string',
description: Optional placeholder to show when no value selected,
},
]}
/>
Main container for Select content, used to contain the up/down arrows, no API beyond children.
Inside Content first, displays when you can scroll up, stuck to the top.
Extends YStack.
Inside Content last, displays when you can scroll down, stuck to the bottom.
Extends YStack.
Extends ThemeableStack. Contains scrollable content items as children.
<PropsTable
data={[
{
name: 'disableScroll',
type: 'boolean',
description: Removes ability to scroll and all style and functionality related to scrolling,
},
]}
/>
Extends YStack. Use only when grouping together items, alongside a Label as the first child.
Extends ListItem. Used to label Groups.
Extends ListItem. Used to add selectable values ot the list. Must provide an index as React Native doesn't give any escape hatch for us to configure that automatically.
<PropsTable
data={[
{
name: 'index',
type: 'number',
required: true,
description: Incrementally starting from 0, matching its appearance in the list.,
},
{
name: 'value',
type: 'string',
description: `Provide a value that will be passed on selection.`,
},
]} />
Extends Paragraph. Used inside Item to provide unselectable text that will show above once selected in the parent Select.
When used alongside <Adapt />, Select will render as a sheet when that breakpoint is active.
This is the only way to render a Select on Native for now, as mobile apps tend to show Select very differently from web and Tamagui wants to present the right abstractions for each platform.
See Sheet for more props.
Must use Select.SheetContents inside the Select.Sheet.Frame to insert the contents given to Select.Content
import { Select } from 'tamagui' // or '@tamagui/select'
export default () => (
<Select defaultValue="">
<Select.Trigger>
<Select.Value placeholder="Search..." />
</Select.Trigger>
<Adapt when="maxMd" platform="touch">
<Sheet>
<Sheet.Frame>
<SheetContents />
</Sheet.Frame>
<Sheet.Overlay />
</Sheet>
</Adapt>
<Select.Content>
<Select.ScrollUpButton />
<Select.Viewport>
<Select.Group>
<Select.Label />
<Select.Item>
<Select.ItemText />
</Select.Item>
</Select.Group>
</Select.Viewport>
<Select.ScrollDownButton />
</Select.Content>
</Select>
)