├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── dist ├── carousel-slider.js ├── carousel-slider.styles.js ├── index.d.ts └── index.js ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | .gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GusttavoCastilho/react-native-carousel-image-slider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GusttavoCastilho/react-native-carousel-image-slider/HEAD/README.md -------------------------------------------------------------------------------- /dist/carousel-slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GusttavoCastilho/react-native-carousel-image-slider/HEAD/dist/carousel-slider.js -------------------------------------------------------------------------------- /dist/carousel-slider.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GusttavoCastilho/react-native-carousel-image-slider/HEAD/dist/carousel-slider.styles.js -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GusttavoCastilho/react-native-carousel-image-slider/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- 1 | export * from "./carousel-slider"; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GusttavoCastilho/react-native-carousel-image-slider/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GusttavoCastilho/react-native-carousel-image-slider/HEAD/yarn.lock --------------------------------------------------------------------------------