Running the Application
To execute and run the application, in the end it is located in the root of the project and runs npm install
Android:
npm install
nxp react-native run-android
iOS:
cd ios
pod install
cd ..
npx react-native run-ios
This generates the node_modules folder where all the project dependencies are located.
I already said that the application has dependencies external to React Native, and some of them need to be linked manually. This is the case of react-native-vectors-icons, which is not a problem, since following the steps indicated on the official page of react-native-vectors-icons.
This library has infinite resources that can be used.
Android For Android we must modify the files:
Last updated
Was this helpful?