├── .browserslistrc ├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── angular.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── ionic.config.json ├── karma.conf.js ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ ├── badge │ │ │ ├── badge.component.html │ │ │ ├── badge.component.scss │ │ │ ├── badge.component.ts │ │ │ └── badge.module.ts │ │ ├── button │ │ │ ├── button.component.html │ │ │ ├── button.component.scss │ │ │ ├── button.component.ts │ │ │ └── button.module.ts │ │ ├── cart-item │ │ │ ├── cart-item.component.html │ │ │ ├── cart-item.component.scss │ │ │ ├── cart-item.component.spec.ts │ │ │ ├── cart-item.component.ts │ │ │ └── cart-item.module.ts │ │ ├── category-item │ │ │ ├── category-item.component.html │ │ │ ├── category-item.component.scss │ │ │ ├── category-item.component.ts │ │ │ └── category-item.module.ts │ │ ├── food-card │ │ │ ├── food-card.component.html │ │ │ ├── food-card.component.scss │ │ │ ├── food-card.component.ts │ │ │ └── food-card.module.ts │ │ └── searchbar │ │ │ ├── searchbar.component.html │ │ │ ├── searchbar.component.scss │ │ │ ├── searchbar.component.ts │ │ │ └── searchbar.module.ts │ ├── home │ │ ├── home-routing.module.ts │ │ ├── home.module.ts │ │ ├── home.page.html │ │ ├── home.page.scss │ │ ├── home.page.spec.ts │ │ └── home.page.ts │ ├── models │ │ ├── cart-item.model.ts │ │ ├── category.model.ts │ │ └── food.model.ts │ ├── screens │ │ ├── cart │ │ │ ├── cart-routing.module.ts │ │ │ ├── cart.module.ts │ │ │ ├── cart.page.html │ │ │ ├── cart.page.scss │ │ │ └── cart.page.ts │ │ ├── detail │ │ │ ├── detail-routing.module.ts │ │ │ ├── detail.module.ts │ │ │ ├── detail.page.html │ │ │ ├── detail.page.scss │ │ │ ├── detail.page.spec.ts │ │ │ └── detail.page.ts │ │ └── listing │ │ │ ├── listing-routing.module.ts │ │ │ ├── listing.module.ts │ │ │ ├── listing.page.html │ │ │ ├── listing.page.scss │ │ │ └── listing.page.ts │ └── services │ │ ├── cart.service.ts │ │ └── food.service.ts ├── assets │ ├── fonts │ │ ├── Gilroy-Bold.ttf │ │ ├── Gilroy-Regular.ttf │ │ └── Gilroy-SemiBold.ttf │ ├── icon │ │ └── favicon.png │ ├── images │ │ ├── face.png │ │ ├── foods │ │ │ ├── hamburger.png │ │ │ ├── mussel.png │ │ │ ├── pizza.png │ │ │ ├── scott-ish-breakfast.png │ │ │ ├── seafood-dishes.png │ │ │ └── tambi.png │ │ └── icons │ │ │ ├── all.png │ │ │ ├── burger.png │ │ │ ├── dish.png │ │ │ ├── pizza.png │ │ │ └── sushi.png │ ├── shapes.svg │ └── svg │ │ ├── d-apps.svg │ │ ├── d-cart.svg │ │ ├── d-heart.svg │ │ ├── d-location.svg │ │ ├── d-search.svg │ │ └── d-time-forward.svg ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── global.scss ├── index.html ├── main.ts ├── polyfills.ts ├── test.ts ├── theme │ ├── fonts.scss │ └── variables.scss └── zone-flags.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/.gitignore -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/angular.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/ionic.config.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/badge/badge.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/badge/badge.component.html -------------------------------------------------------------------------------- /src/app/components/badge/badge.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/badge/badge.component.scss -------------------------------------------------------------------------------- /src/app/components/badge/badge.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/badge/badge.component.ts -------------------------------------------------------------------------------- /src/app/components/badge/badge.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/badge/badge.module.ts -------------------------------------------------------------------------------- /src/app/components/button/button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/button/button.component.html -------------------------------------------------------------------------------- /src/app/components/button/button.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/button/button.component.scss -------------------------------------------------------------------------------- /src/app/components/button/button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/button/button.component.ts -------------------------------------------------------------------------------- /src/app/components/button/button.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/button/button.module.ts -------------------------------------------------------------------------------- /src/app/components/cart-item/cart-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/cart-item/cart-item.component.html -------------------------------------------------------------------------------- /src/app/components/cart-item/cart-item.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/cart-item/cart-item.component.scss -------------------------------------------------------------------------------- /src/app/components/cart-item/cart-item.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/cart-item/cart-item.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/cart-item/cart-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/cart-item/cart-item.component.ts -------------------------------------------------------------------------------- /src/app/components/cart-item/cart-item.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/cart-item/cart-item.module.ts -------------------------------------------------------------------------------- /src/app/components/category-item/category-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/category-item/category-item.component.html -------------------------------------------------------------------------------- /src/app/components/category-item/category-item.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/category-item/category-item.component.scss -------------------------------------------------------------------------------- /src/app/components/category-item/category-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/category-item/category-item.component.ts -------------------------------------------------------------------------------- /src/app/components/category-item/category-item.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/category-item/category-item.module.ts -------------------------------------------------------------------------------- /src/app/components/food-card/food-card.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/food-card/food-card.component.html -------------------------------------------------------------------------------- /src/app/components/food-card/food-card.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/food-card/food-card.component.scss -------------------------------------------------------------------------------- /src/app/components/food-card/food-card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/food-card/food-card.component.ts -------------------------------------------------------------------------------- /src/app/components/food-card/food-card.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/food-card/food-card.module.ts -------------------------------------------------------------------------------- /src/app/components/searchbar/searchbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/searchbar/searchbar.component.html -------------------------------------------------------------------------------- /src/app/components/searchbar/searchbar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/searchbar/searchbar.component.scss -------------------------------------------------------------------------------- /src/app/components/searchbar/searchbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/searchbar/searchbar.component.ts -------------------------------------------------------------------------------- /src/app/components/searchbar/searchbar.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/components/searchbar/searchbar.module.ts -------------------------------------------------------------------------------- /src/app/home/home-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/home/home-routing.module.ts -------------------------------------------------------------------------------- /src/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/home/home.module.ts -------------------------------------------------------------------------------- /src/app/home/home.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/home/home.page.html -------------------------------------------------------------------------------- /src/app/home/home.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/home/home.page.scss -------------------------------------------------------------------------------- /src/app/home/home.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/home/home.page.spec.ts -------------------------------------------------------------------------------- /src/app/home/home.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/home/home.page.ts -------------------------------------------------------------------------------- /src/app/models/cart-item.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/models/cart-item.model.ts -------------------------------------------------------------------------------- /src/app/models/category.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/models/category.model.ts -------------------------------------------------------------------------------- /src/app/models/food.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/models/food.model.ts -------------------------------------------------------------------------------- /src/app/screens/cart/cart-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/screens/cart/cart-routing.module.ts -------------------------------------------------------------------------------- /src/app/screens/cart/cart.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/screens/cart/cart.module.ts -------------------------------------------------------------------------------- /src/app/screens/cart/cart.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/screens/cart/cart.page.html -------------------------------------------------------------------------------- /src/app/screens/cart/cart.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/screens/cart/cart.page.scss -------------------------------------------------------------------------------- /src/app/screens/cart/cart.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/screens/cart/cart.page.ts -------------------------------------------------------------------------------- /src/app/screens/detail/detail-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/screens/detail/detail-routing.module.ts -------------------------------------------------------------------------------- /src/app/screens/detail/detail.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/screens/detail/detail.module.ts -------------------------------------------------------------------------------- /src/app/screens/detail/detail.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/screens/detail/detail.page.html -------------------------------------------------------------------------------- /src/app/screens/detail/detail.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/screens/detail/detail.page.scss -------------------------------------------------------------------------------- /src/app/screens/detail/detail.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/screens/detail/detail.page.spec.ts -------------------------------------------------------------------------------- /src/app/screens/detail/detail.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/screens/detail/detail.page.ts -------------------------------------------------------------------------------- /src/app/screens/listing/listing-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/screens/listing/listing-routing.module.ts -------------------------------------------------------------------------------- /src/app/screens/listing/listing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/screens/listing/listing.module.ts -------------------------------------------------------------------------------- /src/app/screens/listing/listing.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/screens/listing/listing.page.html -------------------------------------------------------------------------------- /src/app/screens/listing/listing.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/screens/listing/listing.page.scss -------------------------------------------------------------------------------- /src/app/screens/listing/listing.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/screens/listing/listing.page.ts -------------------------------------------------------------------------------- /src/app/services/cart.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/services/cart.service.ts -------------------------------------------------------------------------------- /src/app/services/food.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/app/services/food.service.ts -------------------------------------------------------------------------------- /src/assets/fonts/Gilroy-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/fonts/Gilroy-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Gilroy-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/fonts/Gilroy-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Gilroy-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/fonts/Gilroy-SemiBold.ttf -------------------------------------------------------------------------------- /src/assets/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/icon/favicon.png -------------------------------------------------------------------------------- /src/assets/images/face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/images/face.png -------------------------------------------------------------------------------- /src/assets/images/foods/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/images/foods/hamburger.png -------------------------------------------------------------------------------- /src/assets/images/foods/mussel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/images/foods/mussel.png -------------------------------------------------------------------------------- /src/assets/images/foods/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/images/foods/pizza.png -------------------------------------------------------------------------------- /src/assets/images/foods/scott-ish-breakfast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/images/foods/scott-ish-breakfast.png -------------------------------------------------------------------------------- /src/assets/images/foods/seafood-dishes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/images/foods/seafood-dishes.png -------------------------------------------------------------------------------- /src/assets/images/foods/tambi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/images/foods/tambi.png -------------------------------------------------------------------------------- /src/assets/images/icons/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/images/icons/all.png -------------------------------------------------------------------------------- /src/assets/images/icons/burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/images/icons/burger.png -------------------------------------------------------------------------------- /src/assets/images/icons/dish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/images/icons/dish.png -------------------------------------------------------------------------------- /src/assets/images/icons/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/images/icons/pizza.png -------------------------------------------------------------------------------- /src/assets/images/icons/sushi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/images/icons/sushi.png -------------------------------------------------------------------------------- /src/assets/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/shapes.svg -------------------------------------------------------------------------------- /src/assets/svg/d-apps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/svg/d-apps.svg -------------------------------------------------------------------------------- /src/assets/svg/d-cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/svg/d-cart.svg -------------------------------------------------------------------------------- /src/assets/svg/d-heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/svg/d-heart.svg -------------------------------------------------------------------------------- /src/assets/svg/d-location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/svg/d-location.svg -------------------------------------------------------------------------------- /src/assets/svg/d-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/svg/d-search.svg -------------------------------------------------------------------------------- /src/assets/svg/d-time-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/assets/svg/d-time-forward.svg -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/global.scss -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/theme/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/theme/fonts.scss -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/theme/variables.scss -------------------------------------------------------------------------------- /src/zone-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/src/zone-flags.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpembainc/ionic-food-delivery-app/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------