Create app
Create React Native project
Create a React Native app with the npm create command.
Shell
npx create-expo-app ideas-tracker
cd ideas-tracker
Add dependencies
Install the React Native Appwrite SDK.
Shell
npx expo install react-native-appwrite react-native-url-polyfill
Then, install React Navigation to help implement simple navigation logic.
Shell
npm install @react-navigation/native @react-navigation/native-stack
Install peer dependencies needed for React Navigation.
Shell
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:
cd ios
pod install
cd ..