Building SwiftUI apps with Expo UI Copy Learn how to use Expo UI to integrate SwiftUI into your Expo apps. Available in SDK 54 and above. Expo UI brings SwiftUI to React Native. You can use modern SwiftUI primitives to build your apps. This guide covers the basics of using Expo UI to integrate SwiftUI into your Expo apps. Features SwiftUI primitives: Expo UI is not another UI library. It brings SwiftUI primitives to Expo. 1-to-1 mapping: The components in Expo UI have a 1-to-1 mapping to SwiftUI views. You can easily explore available views in the SwiftUI ecosystem, such as Explore SwiftUI or the Libraried app, and find the corresponding Expo UI component. Full-app support: Expo UI is designed to be used throughout the entire app. You can write your app entirely in Expo UI, while maintaining flexibility at the same time. The integration works at the component level. You can also mix React Native components, Expo UI components, DOM components, or custom 2D components using react-native-skia. Installation You'll need to install the @expo/ui package in your Expo project. Run the following command to install it: Terminal Copy npx expo install @expo/ui Usage Expo UI has several SwiftUI components available. You can use them in your app by importing them from @expo/ui/swift-ui. However, to cross the boundary from React Native (UIKit) to SwiftUI, you need to use the component. The is the container for SwiftUI views. You can think of it like in the DOM or in react-native-skia. Under the hood, it uses UIHostingController to render SwiftUI views in UIKit. Basic usage with Host Code Preview SwiftUI loading view Copy import { CircularProgress, Host } from '@expo/ui/swift-ui'; import { View, Text } from 'react-native'; export default function LoadingView() { return ( Loading... ); } Using HStack and VStack You can also use the HStack and VStack components to build the entire layout in SwiftUI. Code Preview SwiftUI loading with HStack and VStack Copy import { CircularProgress, Host, HStack, LinearProgress, VStack } from '@expo/ui/swift-ui'; export default function LoadingView() { return ( ); } Modifiers SwiftUI modifier is a powerful way to customize the appearance and behavior of SwiftUI components. Expo UI also provides modifiers for SwiftUI components. You can import modifiers from @expo/ui/swift-ui/modifiers and pass them as an array to the modifiers prop. In the following example, the expo-mesh-gradient and glassEffect modifier are combined to create Liquid Glass text. Code Preview Note: glassEffect modifier requires Xcode 26+ and iOS 26+. SwiftUI modifiers Copy import { Host, Text } from '@expo/ui/swift-ui'; import { glassEffect, padding } from '@expo/ui/swift-ui/modifiers'; import { MeshGradientView } from 'expo-mesh-gradient'; import { View } from 'react-native'; export default function Page() { return ( Glass effect text ); } Show More iOS Settings app example Combining the Expo UI components and modifiers, you can build a UI like iOS Settings app. Code Preview SwiftUI Form example to build iOS Settings app Copy import { Button, Form, Host, HStack, Image, Section, Spacer, Switch, Text, } from '@expo/ui/swift-ui'; import { background, clipShape, frame } from '@expo/ui/swift-ui/modifiers'; import { Link } from 'expo-router'; import { useState } from 'react'; export default function SettingsView() { const [isAirplaneMode, setIsAirplaneMode] = useState(true); return (
Airplane Mode
); } Show More Common questions Can I use flexbox or other styles in SwiftUI components? Flexbox styles can be applied to the component itself. Once you're inside the SwiftUI context, however, Yoga is not available — layouts should be defined using and instead. What's the Host component? is the container for SwiftUI views. You can think of it like in the DOM or in react-native-skia. Under the hood, it uses UIHostingController to render SwiftUI views in UIKit. How is Expo UI different from libraries like react-native-paper or react-native-elements? Expo UI is not "yet another" UI library and not an opinionated design kit. Instead, it's a primitives library. It exposes native SwiftUI and Jetpack Compose components directly to JavaScript, rather than re-implementing or simulating UI in JavaScript. Can I use @expo/ui/swift-ui on Android or web? The first milestone for Expo UI is achieving a 1-to-1 mapping from SwiftUI to Expo UI. Universal support will come in the next stage of the roadmap. Our priority is to establish strong SwiftUI support first, and then expand to Jetpack Compose on Android and DOM support on the Web. Can I use React Native components inside SwiftUI components? Yes, you can place React Native components as JSX children of Expo UI components. Expo UI automatically creates a UIViewRepresentable wrapper for you. However, keep in mind that the SwiftUI layout system works differently from UIKit and has some limitations. According to Apple's documentation: SwiftUI fully controls the layout of the UIKit view's center, bounds, frame, and transform properties. Don't directly set these layout-related properties on the view managed by a UIViewRepresentable instance from your own code because that conflicts with SwiftUI and results in undefined behavior. Also note that once you render React Native components, you're leaving the SwiftUI context. If you want to add Expo UI components again, you'll need to reintroduce a wrapper. We recommend keeping SwiftUI layouts self-contained. Interop is possible, but it works best when boundaries are clearly defined. I'm a SwiftUI developer. Why should I learn Expo UI? Because React's promise of "learn once, write anywhere", it now extends to SwiftUI and Jetpack Compose. With Expo UI, you can apply your SwiftUI knowledge to build apps that run in the React Native ecosystem, extend to the Web through DOM components, and even integrate 2D and 3D rendering. The system is flexible enough that different parts of your app can use different approaches — giving you seamless integration at the component level. SwiftUI SwiftUI components for building native iOS interfaces with @expo/ui. Bundled version: ~0.2.0-beta.4 Copy This library is currently in beta and subject to breaking changes. It is not available in the Expo Go app — use development builds to try it out. The SwiftUI components in @expo/ui/swift-ui allow you to build fully native iOS interfaces using SwiftUI from React Native. Expo UI guide for Swift UI Learn about the basics of @expo/ui/swift-ui Installation Terminal Copy npx expo install @expo/ui If you are installing this in an existing React Native app, make sure to install expo in your project. Components BottomSheet iOS Code import { BottomSheet, Host, Text } from '@expo/ui/swift-ui'; import { useWindowDimensions } from 'react-native'; const { width } = useWindowDimensions(); setIsOpened(e)}> Hello, world! See also: official SwiftUI documentation Button The borderless variant is not available on Apple TV. iOS Code import { Button, Host } from '@expo/ui/swift-ui'; See also: official SwiftUI documentation CircularProgress iOS Code import { CircularProgress, Host } from '@expo/ui/swift-ui'; See also: official SwiftUI documentation ColorPicker This component is not available on Apple TV. iOS Code import { ColorPicker, Host } from '@expo/ui/swift-ui'; See also: official SwiftUI documentation ContextMenu Note: Also known as DropdownMenu. iOS Code import { ContextMenu, Host } from '@expo/ui/swift-ui'; setSelectedIndex(index)} /> Show More See also: official SwiftUI documentation DateTimePicker (date) This component is not available on Apple TV. iOS Code import { DateTimePicker, Host } from '@expo/ui/swift-ui'; { setSelectedDate(date); }} displayedComponents='date' initialDate={selectedDate.toISOString()} variant='wheel' /> See also: official SwiftUI documentation DateTimePicker (time) This component is not available on Apple TV. iOS Code import { DateTimePicker, Host } from '@expo/ui/swift-ui'; { setSelectedDate(date); }} displayedComponents='hourAndMinute' initialDate={selectedDate.toISOString()} variant='wheel' /> See also: official SwiftUI documentation Gauge This component is not available on Apple TV. iOS Code import { Gauge, Host } from "@expo/ui/swift-ui"; See also: official SwiftUI documentation Host A component that allows you to put the other @expo/ui/swift-ui components in React Native. It acts like for DOM, for react-native-skia, which underlying uses UIHostingController to render the SwiftUI views in UIKit. Since the Host component is a React Native View, you can pass the style prop to it or matchContents prop to make the Host component match the contents' size. Wrapping Button in Host Copy import { Button, Host } from '@expo/ui/swift-ui'; function Example() { return ( ); } Host with flexbox and VStack Copy import { Button, Host, VStack, Text } from '@expo/ui/swift-ui'; function Example() { return ( Hello, world! ); } LinearProgress iOS Code import { LinearProgress, Host } from '@expo/ui/swift-ui'; See also: official SwiftUI documentation List iOS Code import { Host, List } from '@expo/ui/swift-ui'; alert(`indexes of selected items: ${items.join(', ')}`)} moveEnabled={moveEnabled} onMoveItem={(from, to) => alert(`moved item at index ${from} to index ${to}`)} onDeleteItem={(item) => alert(`deleted item at index: ${item}`)} listStyle='automatic' deleteEnabled={deleteEnabled} selectEnabled={selectEnabled}> {data.map((item, index) => ( ))} Show More See also: official SwiftUI documentation Picker (segmented) iOS Code import { Host, Picker } from '@expo/ui/swift-ui'; { setSelectedIndex(index); }} variant="segmented" /> See also: official SwiftUI documentation Picker (wheel) The wheel variant is not available on Apple TV. iOS Code import { Host, Picker } from '@expo/ui/swift-ui'; { setSelectedIndex(index); }} variant="wheel" /> See also: official SwiftUI documentation Slider This component is not available on Apple TV. iOS Code import { Host, Slider } from '@expo/ui/swift-ui'; { setValue(value); }} /> See also: official SwiftUI documentation Switch (toggle) Note: Also known as Toggle. iOS Code import { Host, Switch } from '@expo/ui/swift-ui'; { setChecked(checked); }} color="#ff0000" label="Play music" variant="switch" /> See also: official SwiftUI documentation Switch (checkbox) iOS Code import { Host, Switch } from '@expo/ui/swift-ui'; { setChecked(checked); }} label="Play music" variant="checkbox" /> See also: official SwiftUI documentation TextField iOS Code import { Host, TextField } from '@expo/ui/swift-ui'; See also: official SwiftUI documentation More Expo UI is still in active development. We continue to add more functionality and may change the API. Some examples in the docs may not be up to date. If you want to see the latest changes, check the examples. API Full documentation is not yet available. Use TypeScript types to explore the API. // Import from the SwiftUI package import { BottomSheet } from '@expo/ui/swift-ui'; Jetpack Compose Jetpack Compose components for building native Android interfaces with @expo/ui. Bundled version: ~0.2.0-beta.4 Copy This library is currently in alpha and will frequently experience breaking changes. It is not available in the Expo Go app — use development builds to try it out. The Jetpack Compose components in @expo/ui/jetpack-compose allow you to build fully native Android interfaces using Jetpack Compose from React Native. Installation Terminal Copy npx expo install @expo/ui If you are installing this in an existing React Native app, make sure to install expo in your project. Components Button Android Code import { Button } from '@expo/ui/jetpack-compose'; See also: official Jetpack Compose documentation CircularProgress Android Code import { CircularProgress } from '@expo/ui/jetpack-compose'; See also: official Jetpack Compose documentation ContextMenu Note: Also known as DropdownMenu. Android Code import { ContextMenu } from '@expo/ui/jetpack-compose'; setSelectedIndex(index)} /> Show More See also: official Jetpack Compose documentation Chip Android Code import { Chip } from '@expo/ui/jetpack-compose'; // Assist chip with icon console.log('Opening flight booking...')} /> // Filter chip with selection handleFilterToggle('Images')} /> // Input chip with dismiss handleInputDismiss('Work')} /> // Suggestion chip console.log('Searching nearby...')} /> Show More See also: official Jetpack Compose documentation DateTimePicker (date) Android Code import { DateTimePicker } from '@expo/ui/jetpack-compose'; { setSelectedDate(date); }} displayedComponents='date' initialDate={selectedDate.toISOString()} variant='picker' /> See also: official Jetpack Compose documentation DateTimePicker (time) Android Code import { DateTimePicker } from '@expo/ui/jetpack-compose'; { setSelectedDate(date); }} displayedComponents='hourAndMinute' initialDate={selectedDate.toISOString()} variant='picker' /> See also: official Jetpack Compose documentation LinearProgress Android Code import { LinearProgress } from '@expo/ui/jetpack-compose'; See also: official Jetpack Compose documentation Picker (radio) Android Code import { Picker } from '@expo/ui/jetpack-compose'; { setSelectedIndex(index); }} variant="radio" /> See also: official Jetpack Compose documentation Picker (segmented) Android Code import { Picker } from '@expo/ui/jetpack-compose'; { setSelectedIndex(index); }} variant="segmented" /> See also: official Jetpack Compose documentation Slider Android Code import { Slider } from '@expo/ui/jetpack-compose'; { setValue(value); }} /> See also: official Jetpack Compose documentation Switch (toggle) Note: also known as Toggle. Android Code import { Switch } from '@expo/ui/jetpack-compose'; { setChecked(checked); }} color="#ff0000" label="Play music" variant="switch" /> See also: official Jetpack Compose documentation Switch (checkbox) Android Code import { Switch } from '@expo/ui/jetpack-compose'; { setChecked(checked); }} label="Play music" color="#ff0000" variant="checkbox" /> See also: official Jetpack Compose documentation TextInput Android Code import { TextInput } from '@expo/ui/jetpack-compose'; See also: official Jetpack Compose documentation API Full documentation is not yet available. Use TypeScript types to explore the API. // Import from the Jetpack Compose package import { Button } from '@expo/ui/jetpack-compose';