├── .expo ├── README.md ├── devices.json ├── packager-info.json └── settings.json ├── .gitignore ├── App.js ├── First Shot.png ├── README.md ├── Second.png ├── app video record gif.gif ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── components ├── BasketContainer.js ├── Categories.js ├── CategoryCard.js ├── DishRow.js ├── FeaturedRow.js └── RestaurantCard.js ├── eas.json ├── package.json ├── sanity.js ├── sanity ├── .eslintrc ├── .gitignore ├── README.md ├── package.json ├── sanity.cli.js ├── sanity.config.js ├── schemas │ ├── blockContent.js │ ├── category.js │ ├── dish.js │ ├── featured.js │ ├── index.js │ └── restaurant.js └── static │ └── .gitkeep ├── screens ├── BasketScreen.js ├── DeliveryScreen.js ├── Dummy.js ├── HomeScreen.js ├── PreparingScreen.js ├── RestaurantScreen.js └── assets │ ├── delivery-boy.gif │ └── order.png ├── slices ├── basketSlice.js └── restaurantSlice.js ├── store.js ├── tailwind.config.js ├── yarn-error.log └── yarn.lock /.expo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/.expo/README.md -------------------------------------------------------------------------------- /.expo/devices.json: -------------------------------------------------------------------------------- 1 | { 2 | "devices": [] 3 | } 4 | -------------------------------------------------------------------------------- /.expo/packager-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/.expo/packager-info.json -------------------------------------------------------------------------------- /.expo/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/.expo/settings.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/App.js -------------------------------------------------------------------------------- /First Shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/First Shot.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/README.md -------------------------------------------------------------------------------- /Second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/Second.png -------------------------------------------------------------------------------- /app video record gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/app video record gif.gif -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/BasketContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/components/BasketContainer.js -------------------------------------------------------------------------------- /components/Categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/components/Categories.js -------------------------------------------------------------------------------- /components/CategoryCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/components/CategoryCard.js -------------------------------------------------------------------------------- /components/DishRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/components/DishRow.js -------------------------------------------------------------------------------- /components/FeaturedRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/components/FeaturedRow.js -------------------------------------------------------------------------------- /components/RestaurantCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/components/RestaurantCard.js -------------------------------------------------------------------------------- /eas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/eas.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/package.json -------------------------------------------------------------------------------- /sanity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/sanity.js -------------------------------------------------------------------------------- /sanity/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@sanity/eslint-config-studio" 3 | } 4 | -------------------------------------------------------------------------------- /sanity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/sanity/.gitignore -------------------------------------------------------------------------------- /sanity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/sanity/README.md -------------------------------------------------------------------------------- /sanity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/sanity/package.json -------------------------------------------------------------------------------- /sanity/sanity.cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/sanity/sanity.cli.js -------------------------------------------------------------------------------- /sanity/sanity.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/sanity/sanity.config.js -------------------------------------------------------------------------------- /sanity/schemas/blockContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/sanity/schemas/blockContent.js -------------------------------------------------------------------------------- /sanity/schemas/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/sanity/schemas/category.js -------------------------------------------------------------------------------- /sanity/schemas/dish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/sanity/schemas/dish.js -------------------------------------------------------------------------------- /sanity/schemas/featured.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/sanity/schemas/featured.js -------------------------------------------------------------------------------- /sanity/schemas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/sanity/schemas/index.js -------------------------------------------------------------------------------- /sanity/schemas/restaurant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/sanity/schemas/restaurant.js -------------------------------------------------------------------------------- /sanity/static/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/sanity/static/.gitkeep -------------------------------------------------------------------------------- /screens/BasketScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/screens/BasketScreen.js -------------------------------------------------------------------------------- /screens/DeliveryScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/screens/DeliveryScreen.js -------------------------------------------------------------------------------- /screens/Dummy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/screens/Dummy.js -------------------------------------------------------------------------------- /screens/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/screens/HomeScreen.js -------------------------------------------------------------------------------- /screens/PreparingScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/screens/PreparingScreen.js -------------------------------------------------------------------------------- /screens/RestaurantScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/screens/RestaurantScreen.js -------------------------------------------------------------------------------- /screens/assets/delivery-boy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/screens/assets/delivery-boy.gif -------------------------------------------------------------------------------- /screens/assets/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/screens/assets/order.png -------------------------------------------------------------------------------- /slices/basketSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/slices/basketSlice.js -------------------------------------------------------------------------------- /slices/restaurantSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/slices/restaurantSlice.js -------------------------------------------------------------------------------- /store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/store.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akki251/Food-Delivery-App-React-Native/HEAD/yarn.lock --------------------------------------------------------------------------------