├── .gitignore ├── .npmignore ├── README.md ├── examples └── index.js ├── images └── showcase.gif ├── package.json ├── src ├── Carousel.tsx └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | out 3 | npm-debug.log -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f111fei/react-native-banner-carousel/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f111fei/react-native-banner-carousel/HEAD/README.md -------------------------------------------------------------------------------- /examples/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f111fei/react-native-banner-carousel/HEAD/examples/index.js -------------------------------------------------------------------------------- /images/showcase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f111fei/react-native-banner-carousel/HEAD/images/showcase.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f111fei/react-native-banner-carousel/HEAD/package.json -------------------------------------------------------------------------------- /src/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f111fei/react-native-banner-carousel/HEAD/src/Carousel.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f111fei/react-native-banner-carousel/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f111fei/react-native-banner-carousel/HEAD/tsconfig.json --------------------------------------------------------------------------------