├── .expo-shared └── assets.json ├── .gitignore ├── App.js ├── CartContext.js ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png ├── product_images │ ├── graphics.jpeg │ ├── laptop.jpg │ └── phone.jpeg └── splash.png ├── babel.config.js ├── components ├── CartIcon.js └── Product.js ├── package.json ├── screens ├── Cart.js ├── ProductDetails.js └── ProductsList.js ├── services └── ProductsService.js └── yarn.lock /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/App.js -------------------------------------------------------------------------------- /CartContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/CartContext.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/product_images/graphics.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/assets/product_images/graphics.jpeg -------------------------------------------------------------------------------- /assets/product_images/laptop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/assets/product_images/laptop.jpg -------------------------------------------------------------------------------- /assets/product_images/phone.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/assets/product_images/phone.jpeg -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/CartIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/components/CartIcon.js -------------------------------------------------------------------------------- /components/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/components/Product.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/package.json -------------------------------------------------------------------------------- /screens/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/screens/Cart.js -------------------------------------------------------------------------------- /screens/ProductDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/screens/ProductDetails.js -------------------------------------------------------------------------------- /screens/ProductsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/screens/ProductsList.js -------------------------------------------------------------------------------- /services/ProductsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/services/ProductsService.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eazy2Code/Ecommerce-React-Native/HEAD/yarn.lock --------------------------------------------------------------------------------