This documentation is available as Markdown for AI agents and LLMs. See the full Markdown index or append .md to any documentation URL.
选择器
具有菜单和滚轮外观的单选输入。
Picker 是一个单选输入。你可以使用 <Picker.Item label value /> 子元素来声明选项,这样父级 Picker 就会读取它们,并渲染一个适合平台的下拉菜单或转轮。
通用的 Picker 与 @expo/ui/community/picker 相互独立,后者仍然是 @react-native-picker/picker 的兼容适配层。对于新代码,除非你确实需要 RN-Picker 的 API 表面,否则应优先使用这个通用 Picker。
安装
- npx expo install @expo/uiIf you are installing this in an existing React Native app, make sure to install expo in your project.
用法
菜单外观(默认)
import { useState } from 'react'; import { Host, Row, Picker, Spacer, Text } from '@expo/ui'; const FLAVOURS = [ { label: '香草', value: 'vanilla' }, { label: '巧克力', value: 'chocolate' }, { label: '草莓', value: 'strawberry' }, ]; export default function PickerMenuExample() { const [value, setValue] = useState('vanilla'); return ( <Host style={{ flex: 1 }}> <Row alignment="center" spacing={12} style={{ padding: 16 }}> <Text>口味:</Text> <Spacer flexible /> <Picker selectedValue={value} onValueChange={setValue}> {FLAVOURS.map(f => ( <Picker.Item key={f.value} label={f.label} value={f.value} /> ))} </Picker> </Row> </Host> ); }
轮盘外观
appearance="wheel" 会在 iOS 上渲染一个内联可滚动的转轮。在 Android 和 web 上,这会回退到平台默认的下拉菜单(Material 3 不提供轮盘样式的 Picker)。
import { useState } from 'react'; import { Host, Column, Picker } from '@expo/ui'; const FLAVOURS = [ { label: '香草', value: 'vanilla' }, { label: '巧克力', value: 'chocolate' }, { label: '草莓', value: 'strawberry' }, ]; export default function PickerWheelExample() { const [value, setValue] = useState('chocolate'); return ( <Host style={{ flex: 1 }}> <Column spacing={8} style={{ padding: 16 }}> <Picker selectedValue={value} onValueChange={setValue} appearance="wheel"> {FLAVOURS.map(f => ( <Picker.Item key={f.value} label={f.label} value={f.value} /> ))} </Picker> </Column> </Host> ); }
API
import { Picker } from '@expo/ui';
Component
Type: React.Element<PickerProps<T>>
A single-selection input.
Declare options via <Picker.Item label value /> children.
Props for the Picker component, a single-selection input.
PickerAppearance • Default: 'menu'Visual appearance of the picker.
See PickerAppearance.
TThe currently selected value.
Must match the value of one of the <Picker.Item> children.
Interfaces
Internal: extracted item data from <Picker.Item> children.
| Property | Type | Description |
|---|---|---|
| label | string | - |
| value | T | - |
Types
Literal type: string
Visual appearance of the picker.
'menu'— Compact button that opens a popup/dropdown on tap. Cross-platform default.'wheel'— Scrollable rotor UI that's always visible inline. iOS only; on Android and web this falls back to the platform's default dropdown.
Acceptable values are: 'wheel' | 'menu'
Literal type: union
The type of values a Picker.Item can carry.
Acceptable values are: string | number