Exploring VisionOS Apps with React Native
Explore how to develop immersive VisionOS applications using React Native, with a guide on prerequisites, codebase setup, and integration steps.
Author

Date

Book a call
Table of Contents
As technology continues to evolve, our digital experiences are constantly being reshaped. One exciting innovation on the horizon is VisionOS – a platform that seamlessly blends visual and interactive elements into our daily digital interactions.
In this introductory guide, we take a closer look at VisionOS applications and how developers can utilize React Native to create immersive experiences. Whether you're an experienced developer or simply curious, come along as we explore the potential of VisionOS and its impact on user interfaces.
Join us as we embark on this journey into the world of VisionOS – where technology and human experience converge to redefine our digital interactions.
We will be utilizing the React Native VisionOS fork developed by Callstack throughout this guide. To learn more about this fork and its functionalities, you can find additional information here.
Prerequisites for Developing on VisionOS
Before we begin, let us review the prerequisites for developing apps on the VisionOS platform:
- Download the latest Xcode: Ensure you have the latest version of Xcode installed on your machine, with a minimum version of 15.2.
- Ensure you have proper development environment for React Native set up. Follow the guide here for the same.
- Install VisionOS simulator runtime.
- Install the latest version of CMake.
Setting Up the Codebase
Now lets get started with setting up the codebase for an app in VisionOS and running the same in a VisionOS simulator.
1. To initiate a new project using the React Native VisionOS fork developed by Software Mansion, please run the following command in your terminal:
Replace YourApp with the desired name for your project.
2. Now, navigate to the VisionOS folder, YourApp/visionos within your project directory, and run the following commands to install pods specifically for the VisionOS target:
These commands will ensure that the necessary dependencies are installed for the VisionOS target within your React Native project.
3. To start the Metro bundler, simply run the following command in your terminal:
This command will initiate the Metro bundler, which is responsible for building your React Native project and bundling JavaScript modules for use in the app. Keep this terminal window open while you work on your project to ensure the bundler remains active.
4. Now run
To start the app in the simulator. Make Sure that you start the metro before proceeding.
Alternatively, you can open the project YourApp/visionos/YourApp.xcworkspace in Xcode and run it through Xcode as well.
Once the app is running you will see the below screen:

Now you can edit your code as in any React Native apps, and your app changes will reflect immediately.
Examples and Experiments
While the library support may be limited at present, many major libraries are actively adding support for VisionOS. Some popular examples include react-native-reanimated, react-native-gesture-handler, and react-native-video. Keep an eye out for updates as these libraries continue to enhance their compatibility with the VisionOS platform.
If your existing React Native app doesn't rely on dependencies that aren't supported in VisionOS, it should work on VisionOS with minimal modifications.
To test this, we experimented with an animated component originally built for a mobile app using Expo. Since it already utilized react-native-reanimated and react-native-gesture-handler as existing dependencies, it functioned as expected on VisionOS without any issues.

This highlights the compatibility of existing React Native projects with VisionOS, provided they don't heavily rely on unsupported dependencies.
And most pf the JS dependencies or libraries should also work. We did try out a state management library which worked the same as in any React Native app.
Integrate into Existing React Native Apps
If you want to run your existing React Native app on VisionOS, you can do the same as well as long as the dependencies of the project are supported for React Native VisionOS.
To extend your existing app’s capabilities by adding visionos as a new platform, follow these steps
1. Initiate a new project using the React Native VisionOS, run the following command in your terminal to do so:
Use the same name that you have in your main app.
2. Copy visionos folder from the codebase to your destination project, your existing React Native app.
3. Add the required dependencies to your React Native app to support VisionOS:
4. Modify metro.config.js to include custom resolver .This resolver rewrites imports from react-native -> @callstack/react-native-visionos when bundling the app for that platform.
Now, you can run your app in VisionOS using the steps mentioned above to the run the VisionOS app and it should work.
Summing Up
Go ahead, experiment and delve into the functionalities of React Native for visionOS to create immersive experiences of your own. It is an exciting new technology that promises a lot. However, keep in mind that it is still in its early stages and may have some issues.
Related Articles.
More from the engineering frontline.
Dive deep into our research and insights on design, development, and the impact of various trends to businesses.

Apr 9, 2026
From RFPs to Revenue: How We Built an AI Agent Team That Writes Technical Proposals in 60 Seconds
GeekyAnts built DealRoom.ai — four AI agents that turn RFPs into accurate technical proposals in 60 seconds, with real-time cost breakdowns and scope maps.

Apr 6, 2026
How We Built an AI System That Automates Senior Solution Architect Workflows
Discover how we built a 4-agent AI co-pilot that converts complex RFPs into draft technical proposals in 15 minutes — with built-in conflict detection, assumption surfacing, and confidence scoring.

Apr 6, 2026
AI Code Healer for Fixing Broken CI/CD Builds Fast
A deep dive into how GeekyAnts built an AI-powered Code Healer that analyzes CI/CD failures, summarizes logs, and generates code-level fixes to keep development moving.

Apr 2, 2026
A Real-Time AI Fraud Decision Engine Under 50ms
A deep dive into how GeekyAnts built a real-time AI fraud detection system that evaluates transactions in milliseconds using a hybrid multi-agent approach.

Apr 1, 2026
Building an Autonomous Multi-Agent Fraud Detection System in Under 200ms
GeekyAnts built a 5-agent fraud detection pipeline that makes decisions in under 200ms — 15x cheaper than single-model systems, with full explainability built in.

Mar 31, 2026
Building a Self-Healing CI/CD System with an AI Agent
When code breaks a pipeline, developers have to stop working and figure out why. This blog shows how an AI agent reads the error, finds the fix, and submits it for review all on its own.
