0

I'm trying to use create-react-native-app as per the documentation with an example project that was built using instructions for react-native.

In terms of translating from one to the other what are the steps involved?

Edit: So i can run the app using npm start, with the expo.io QR code appearing as an option etc?

denden
  • 1,309
  • 1
  • 14
  • 23

1 Answers1

1

Create-react-native-app create a new project with Expo, you can eject it to turn it into a react-native project (android/ios folders with native code + src folder with javascript code).

You'll need an Xcode/Android Studio environment to run a react-native app built without Expo.

You can't use Expo to run a React-Native app with custom native code.

Related links : Ejecting from Create React Native App

What is the difference between Expo and React Native?

Dyo
  • 4,429
  • 1
  • 15
  • 30