├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── index.js ├── package.json └── screencasts ├── horizontal.gif └── vertical.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remobile/react-native-card-swiper/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remobile/react-native-card-swiper/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remobile/react-native-card-swiper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remobile/react-native-card-swiper/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remobile/react-native-card-swiper/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remobile/react-native-card-swiper/HEAD/package.json -------------------------------------------------------------------------------- /screencasts/horizontal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remobile/react-native-card-swiper/HEAD/screencasts/horizontal.gif -------------------------------------------------------------------------------- /screencasts/vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remobile/react-native-card-swiper/HEAD/screencasts/vertical.gif --------------------------------------------------------------------------------