├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── image └── card.gif ├── index.js ├── lib ├── CSS.js └── Card.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjy5264/react-native-card-carousel/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjy5264/react-native-card-carousel/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjy5264/react-native-card-carousel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjy5264/react-native-card-carousel/HEAD/README.md -------------------------------------------------------------------------------- /image/card.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjy5264/react-native-card-carousel/HEAD/image/card.gif -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjy5264/react-native-card-carousel/HEAD/index.js -------------------------------------------------------------------------------- /lib/CSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjy5264/react-native-card-carousel/HEAD/lib/CSS.js -------------------------------------------------------------------------------- /lib/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjy5264/react-native-card-carousel/HEAD/lib/Card.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjy5264/react-native-card-carousel/HEAD/package.json --------------------------------------------------------------------------------