ReactNative (Setup)
Step 1: Install Node.js using https://nodejs.org/en
Step 2: run npm install -g expo-cli in terminal
Step 3: Create a new project
npx create-expo-app Weather
cd Weather
expo start
Step 4: install Expo app in your mobile
Step 5: Scan the QR code.
npm install @react-native-cummunity/eslint-config --save-dev
npm install --save-dev --save-exact prettier
touch .prettierrc.js
module.exports = {
backetSpacing: true,
singleQuote:true,
tabWidth: 2,
useTabs: false,
trailingComma: "none",
semi: false
};
Comments
Post a Comment