top of page
Search
Writer's pictureKiazsoft

Expo for React Native

Install expo-cli. If on Mac you get any permission errors then run as sudo

npm install expo-cli --global

Create expo project

expo init MyApp
cd MyApp
expo start (This will start the project)

React Native do not provide image picker. Installing expo image picker.

expo install expo-image-picker

2 views0 comments

Recent Posts

See All

Mac Useful Commands

Show hidden files in Finder Command + Shift + .

Git

Removing file from all history. git filter-branch --force --index-filter \ "git rm --cached --ignore-unmatch PATH-TO-FILE" \...

MongoDB

Mongo Sample find query db.getCollection("user").find( { "username" : "kia" }, {//projections "username": 1.0, //1.0 means include...

Comments


bottom of page