Docs
Skip to content

React Native

Create app_

Create a React Native app project and integrate with Appwrite.

1 min read

Raw

Create React Native project

Create a React Native app with the npm create command.

Bash
npx create-expo-app ideas-tracker
cd ideas-tracker

Add dependencies

Install the React Native Appwrite SDK.

Bash
npx expo install react-native-appwrite react-native-url-polyfill

Then, install React Navigation to help implement simple navigation logic.

Bash
npm install @react-navigation/native @react-navigation/native-stack

Install peer dependencies needed for React Navigation.

Bash
npx expo install react-native-screens react-native-safe-area-context

For iOS with bare React Native project, make sure you have CocoaPods installed. Then install the pods to complete the installation:

Plain text
cd ios
pod install
cd ..

Was this page helpful?

Share what worked or what we should fix. Once approved, our agents automatically apply suggested updates to the docs.