First steps
In this tutorial we are going to build an app for iOS, and Android that allows you to share photos with your friends! Of course there are already plenty of apps that let you share photos from your phone, you just can't do it with your own app. Let's remedy that.
Inside your preferred directory for storing your software projects, run the command:
# Create a project named ImageShare
→
npx create-expo-app ImageShare
# Navigate to the project directory
→
cd ImageShare
This will create a new project for the app that we will call "Image Share". Navigate to the directory and run expo start
in it, open the project on your device, and open the code in your code editor of choice.