https://github.com/flthibaud/deliveroo-clone-app
Clone of the Deliveroo app
https://github.com/flthibaud/deliveroo-clone-app
react-native react-navigation redux tailwind-css
Last synced: 3 months ago
JSON representation
Clone of the Deliveroo app
- Host: GitHub
- URL: https://github.com/flthibaud/deliveroo-clone-app
- Owner: flthibaud
- License: mit
- Created: 2022-07-29T06:47:59.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-15T12:10:14.000Z (over 3 years ago)
- Last Synced: 2025-04-02T07:17:52.663Z (over 1 year ago)
- Topics: react-native, react-navigation, redux, tailwind-css
- Language: JavaScript
- Homepage:
- Size: 3 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
## 🚀 Getting Started
- Install [React Native Debugger](https://github.com/jhen0409/react-native-debugger/releases) and open before running the app
- Install `eslint`, `prettier` and `editor config` plugins into your IDE
- Ensure your machine has the [React Native dependencies installed](https://facebook.github.io/react-native/docs/getting-started)
```bash
# Install dependencies
yarn install && ( cd ios && pod install )
```
#### iOS
```bash
# Start in the iOS Simulator
npx react-native run-ios --simulator="iPhone 11"
```
#### Android
```bash
# Start in the Android Simulator
# - Note: open Android Studio > Tools > AVD > Run a device
# - Example device specs: https://medium.com/pvtl/react-native-android-development-on-mac-ef7481f65e47#d5da
npx react-native run-android
```