Mobile app for EventMap. Built with React Native with Expo SDK.
- Add more information to the README
- Set up the project board for more tasks
- Clone the repo and go inside the folder.
git clone https://github.com/opaquee/EventMapMobile.git
cd EventMapMobile
- Install dependencies
yarn install
- Start the app
expo start
- A new browser window should pop up, as well as new information in the terminal. You can simulate iOS (with an Apple device) or Android devices or scan the QR code with the expo client app.
- For VSCode users, add these in your
settings.json
file by pressingControl/Command + Shift + P
and searchingopen setting (JSON)
.
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": false,
"editor.tabSize": 2
},
"[javascriptreact]": {
"editor.formatOnSave": false,
"editor.tabSize": 2
},
"[typescript]": {
"editor.formatOnSave": false,
"editor.tabSize": 2
},
"[typescriptreact]": {
"editor.formatOnSave": false,
"editor.tabSize": 2
}
- If you have other text editors, like up eslint/prettier automatting with your editor.
When contributing, make a branch with your own feature, and then submit a pull request if you want to push your changes to master. Please do not directly commit to master for big changes.