Learing React-Native app development using Expo Technology from different resources. Come lets all learn together 😸
- Expo CLI (create, modify, deploy react-native apps through cmd line)
- Expo Go in mobile (visulize the developed app in mobile device with simulator/ emulator)
- Nodejs
$ npm install --global expo-cli (Installs cli in system globally)
$ expo init my-project (Creating a project)
$ expo start (Starts the app and opens qrcode to scan in mobiles)
$ expo install expo-image-picker (To add native feature to pick images from gallery)
$ expo install expo-sharing (To able to share the images by various modes - bluetooth, wathsapp etc)
$ expo install expo-splash-screen (To make splash screen modification *optional*)
Expo folder creates a repo inside app-folder. we need to delete the .git folder from app-folder. This .git folder is usually hidden one
Ref: stackoverflow answer