├── .expo-shared └── assets.json ├── .gitignore ├── App.js ├── LEARN.md ├── README.md ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png ├── orderLoding.gif └── splash.png ├── babel.config.js ├── components ├── BasketIcon.js ├── Categories.js ├── CategoriesCard.js ├── DishRow.js ├── FeatureRow.js └── RestaurantCard.js ├── features ├── basketSlice.js └── restaurantSlice.js ├── package.json ├── qr └── expo-go.svg ├── sanity.js ├── sanity ├── .eslintrc ├── .npmignore ├── README.md ├── config │ ├── .checksums │ └── @sanity │ │ ├── data-aspects.json │ │ ├── default-layout.json │ │ ├── default-login.json │ │ ├── form-builder.json │ │ └── vision.json ├── package-lock.json ├── package.json ├── plugins │ └── .gitkeep ├── sanity.json ├── schemas │ ├── category.js │ ├── dish.js │ ├── featured.js │ ├── restaurant.js │ └── schema.js ├── static │ ├── .gitkeep │ └── favicon.ico ├── tsconfig.json └── yarn-error.log ├── screens ├── BasketScreen.js ├── DeliveryScreen.js ├── HomeScreen.js ├── PreparingOrderScreen.js └── RestaurantScreen.js ├── store.js └── tailwind.config.js /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/App.js -------------------------------------------------------------------------------- /LEARN.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/orderLoding.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/assets/orderLoding.gif -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/BasketIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/components/BasketIcon.js -------------------------------------------------------------------------------- /components/Categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/components/Categories.js -------------------------------------------------------------------------------- /components/CategoriesCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/components/CategoriesCard.js -------------------------------------------------------------------------------- /components/DishRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/components/DishRow.js -------------------------------------------------------------------------------- /components/FeatureRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/components/FeatureRow.js -------------------------------------------------------------------------------- /components/RestaurantCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/components/RestaurantCard.js -------------------------------------------------------------------------------- /features/basketSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/features/basketSlice.js -------------------------------------------------------------------------------- /features/restaurantSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/features/restaurantSlice.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/package.json -------------------------------------------------------------------------------- /qr/expo-go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/qr/expo-go.svg -------------------------------------------------------------------------------- /sanity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/sanity.js -------------------------------------------------------------------------------- /sanity/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@sanity/eslint-config-studio" 3 | } 4 | -------------------------------------------------------------------------------- /sanity/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/sanity/.npmignore -------------------------------------------------------------------------------- /sanity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/sanity/README.md -------------------------------------------------------------------------------- /sanity/config/.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/sanity/config/.checksums -------------------------------------------------------------------------------- /sanity/config/@sanity/data-aspects.json: -------------------------------------------------------------------------------- 1 | { 2 | "listOptions": {} 3 | } 4 | -------------------------------------------------------------------------------- /sanity/config/@sanity/default-layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/sanity/config/@sanity/default-layout.json -------------------------------------------------------------------------------- /sanity/config/@sanity/default-login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/sanity/config/@sanity/default-login.json -------------------------------------------------------------------------------- /sanity/config/@sanity/form-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/sanity/config/@sanity/form-builder.json -------------------------------------------------------------------------------- /sanity/config/@sanity/vision.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultApiVersion": "2021-10-21" 3 | } 4 | -------------------------------------------------------------------------------- /sanity/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/sanity/package-lock.json -------------------------------------------------------------------------------- /sanity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/sanity/package.json -------------------------------------------------------------------------------- /sanity/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | User-specific packages can be placed here 2 | -------------------------------------------------------------------------------- /sanity/sanity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/sanity/sanity.json -------------------------------------------------------------------------------- /sanity/schemas/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/sanity/schemas/category.js -------------------------------------------------------------------------------- /sanity/schemas/dish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/sanity/schemas/dish.js -------------------------------------------------------------------------------- /sanity/schemas/featured.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/sanity/schemas/featured.js -------------------------------------------------------------------------------- /sanity/schemas/restaurant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/sanity/schemas/restaurant.js -------------------------------------------------------------------------------- /sanity/schemas/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/sanity/schemas/schema.js -------------------------------------------------------------------------------- /sanity/static/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/sanity/static/.gitkeep -------------------------------------------------------------------------------- /sanity/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/sanity/static/favicon.ico -------------------------------------------------------------------------------- /sanity/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/sanity/tsconfig.json -------------------------------------------------------------------------------- /sanity/yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/sanity/yarn-error.log -------------------------------------------------------------------------------- /screens/BasketScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/screens/BasketScreen.js -------------------------------------------------------------------------------- /screens/DeliveryScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/screens/DeliveryScreen.js -------------------------------------------------------------------------------- /screens/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/screens/HomeScreen.js -------------------------------------------------------------------------------- /screens/PreparingOrderScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/screens/PreparingOrderScreen.js -------------------------------------------------------------------------------- /screens/RestaurantScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/screens/RestaurantScreen.js -------------------------------------------------------------------------------- /store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/store.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SashenJayathilaka/Deliveroo-Clone/HEAD/tailwind.config.js --------------------------------------------------------------------------------