├── .expo-shared └── assets.json ├── .gitignore ├── App.js ├── README.md ├── app.json ├── assets ├── icon.png └── splash.png ├── babel.config.js ├── component ├── Carousel.js └── CarouselItem.js ├── data └── Data.js ├── package.json └── screen └── Home.js /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaidather/carouselView/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaidather/carouselView/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaidather/carouselView/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # carouselView 2 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaidather/carouselView/HEAD/app.json -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaidather/carouselView/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaidather/carouselView/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaidather/carouselView/HEAD/babel.config.js -------------------------------------------------------------------------------- /component/Carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaidather/carouselView/HEAD/component/Carousel.js -------------------------------------------------------------------------------- /component/CarouselItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaidather/carouselView/HEAD/component/CarouselItem.js -------------------------------------------------------------------------------- /data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaidather/carouselView/HEAD/data/Data.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaidather/carouselView/HEAD/package.json -------------------------------------------------------------------------------- /screen/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaidather/carouselView/HEAD/screen/Home.js --------------------------------------------------------------------------------