Last active
June 17, 2020 09:42
-
-
Save paulobunga/96352fb34d2c6711d69a4f08230e0cf8 to your computer and use it in GitHub Desktop.
Steps to create new React Native Project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
set /P project_name="Enter project name: " | |
IF [%project_name%] != [] ( | |
npx react-native init %PROJECT_NAME% --template @ui-kitten/template-ts | |
cd %project_name% | |
yarn add @react-navigation/native | |
yarn add react-native-reanimated react-native-gesture-handler react-native-screens react-native-safe-area-context @react-native-community/masked-view | |
yarn add @react-navigation/stack | |
yarn add redux redux-thunk react-redux | |
yarn add @react-native-community/async-storage | |
yarn add @react-native-community/netinfo | |
yarn add react-native-geolocation-service | |
yarn add react-native-image-picker | |
yarn add react-native-keyboard-aware-scroll-view | |
yarn add react-native-permissions | |
yarn add axios react-native-sqlite-storage | |
) ELSE ( | |
echo Project Name Not Defined | |
PAUSE | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment