├── README.md ├── changelog.txt ├── index.android.js ├── index.ios.js ├── package.json └── src ├── App.js ├── Config.js ├── DrawerContent.js ├── Menu.js ├── assets └── menu.png ├── data └── home.js ├── database ├── ProductDatabase.json ├── ProductInfo.json └── gikFashionDatabase.json ├── resources ├── components │ ├── Container.js │ ├── Grid.js │ ├── Header.js │ ├── Line.js │ ├── ListPanel.js │ ├── Swiper.js │ ├── collection │ │ ├── CollectionThumbFour.js │ │ └── CollectionThumbThree.js │ └── product │ │ ├── GridProductThumb.js │ │ └── SwiperProductThumb.js ├── helpers │ └── Utils.js ├── images │ ├── default_avatar.png │ ├── default_img.png │ └── logo.png └── styles │ └── colors.js └── screens ├── Home.js └── Listing ├── ListGrid.js └── ListSwiper.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/README.md -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- 1 | VERSION 1.0 – 08 Jun 2017 2 | - Initial release 3 | -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- 1 | import App from './src/App'; 2 | -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- 1 | import App from './src/App'; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/package.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/Config.js -------------------------------------------------------------------------------- /src/DrawerContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/DrawerContent.js -------------------------------------------------------------------------------- /src/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/Menu.js -------------------------------------------------------------------------------- /src/assets/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/assets/menu.png -------------------------------------------------------------------------------- /src/data/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/data/home.js -------------------------------------------------------------------------------- /src/database/ProductDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/database/ProductDatabase.json -------------------------------------------------------------------------------- /src/database/ProductInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/database/ProductInfo.json -------------------------------------------------------------------------------- /src/database/gikFashionDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/database/gikFashionDatabase.json -------------------------------------------------------------------------------- /src/resources/components/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/resources/components/Container.js -------------------------------------------------------------------------------- /src/resources/components/Grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/resources/components/Grid.js -------------------------------------------------------------------------------- /src/resources/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/resources/components/Header.js -------------------------------------------------------------------------------- /src/resources/components/Line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/resources/components/Line.js -------------------------------------------------------------------------------- /src/resources/components/ListPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/resources/components/ListPanel.js -------------------------------------------------------------------------------- /src/resources/components/Swiper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/resources/components/Swiper.js -------------------------------------------------------------------------------- /src/resources/components/collection/CollectionThumbFour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/resources/components/collection/CollectionThumbFour.js -------------------------------------------------------------------------------- /src/resources/components/collection/CollectionThumbThree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/resources/components/collection/CollectionThumbThree.js -------------------------------------------------------------------------------- /src/resources/components/product/GridProductThumb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/resources/components/product/GridProductThumb.js -------------------------------------------------------------------------------- /src/resources/components/product/SwiperProductThumb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/resources/components/product/SwiperProductThumb.js -------------------------------------------------------------------------------- /src/resources/helpers/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/resources/helpers/Utils.js -------------------------------------------------------------------------------- /src/resources/images/default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/resources/images/default_avatar.png -------------------------------------------------------------------------------- /src/resources/images/default_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/resources/images/default_img.png -------------------------------------------------------------------------------- /src/resources/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/resources/images/logo.png -------------------------------------------------------------------------------- /src/resources/styles/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/resources/styles/colors.js -------------------------------------------------------------------------------- /src/screens/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/screens/Home.js -------------------------------------------------------------------------------- /src/screens/Listing/ListGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/screens/Listing/ListGrid.js -------------------------------------------------------------------------------- /src/screens/Listing/ListSwiper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactazteam/material-design-listing-ecommerce/HEAD/src/screens/Listing/ListSwiper.js --------------------------------------------------------------------------------