This is documentation for the next SDK version. For up-to-date documentation, see the latest version (SDK 55).
ColorPicker
A SwiftUI ColorPicker component for selecting colors.
iOS
For the complete documentation index, see llms.txt. Use this file to discover all available pages.
Expo UI ColorPicker matches the official SwiftUI ColorPicker API and allows app users to select colors from a palette.
Installation
Terminal
- npx expo install @expo/uiIf you are installing this in an existing React Native app, make sure to install expo in your project.
Usage
Basic color picker
ColorPickerExample.tsx
import { useState } from 'react'; import { Host, ColorPicker } from '@expo/ui/swift-ui'; export default function ColorPickerExample() { const [color, setColor] = useState('#FF6347'); return ( <Host matchContents> <ColorPicker label="Select a color" selection={color} onSelectionChange={setColor} /> </Host> ); }
Color picker with opacity support
Use the supportsOpacity prop to allow users to select colors with alpha transparency.
ColorPickerOpacityExample.tsx
import { useState } from 'react'; import { Host, ColorPicker } from '@expo/ui/swift-ui'; export default function ColorPickerOpacityExample() { const [color, setColor] = useState('#FF634780'); return ( <Host matchContents> <ColorPicker label="Select a color with opacity" selection={color} onSelectionChange={setColor} supportsOpacity /> </Host> ); }
API
import { ColorPicker } from '@expo/ui/swift-ui';
Component
Type: React.Element<ColorPickerProps>
Renders a ColorPicker component using SwiftUI.