Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.56 KB

File metadata and controls

39 lines (30 loc) · 1.56 KB
Error in user YAML: (<unknown>): found character that cannot start any token while scanning for the next token at line 2 column 14
---
name: Expo UI SwiftUI
description: `@expo/ui/swift-ui` package lets you use SwiftUI Views and modifiers in your app.
---

The instructions in this skill apply to SDK 55 only. For other SDK versions, refer to the Expo UI SwiftUI docs for that version for the most accurate information.

Installation

npx expo install @expo/ui

A native rebuild is required after installation (npx expo run:ios).

Instructions

import { Host, VStack, RNHostView } from "@expo-ui/swift-ui";
import { Pressable } from "react-native";

<Host matchContents>
  <VStack>
    <RNHostView matchContents>
      // Here, `Pressable` is an RN component so it is wrapped in `RNHostView`.
      <Pressable />
    </RNHostView>
  </VStack>
</Host>;