above: App screens
This app is written in React Native using the Expo framework.
yarn ios
to run in the iOS simulatoryarn android
to run in the Android emulator
To show maps on Android, you need a Google Maps API key. Create a file named
src/googleApiKey.js
with the linemodule.exports = 'your_key_here'
.
Code: Look at src/App.tsx for the main app entrypoint. All screens are contained in src/screens, and other UI components are in src/components.
eas build -p ios --profile production [--local]
eas build -p android --profile production [--local]