├── .editorconfig ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json └── src ├── Swiper.android.js ├── Swiper.ios.js └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnylqm/react-native-swiper2/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnylqm/react-native-swiper2/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnylqm/react-native-swiper2/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnylqm/react-native-swiper2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnylqm/react-native-swiper2/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnylqm/react-native-swiper2/HEAD/package.json -------------------------------------------------------------------------------- /src/Swiper.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnylqm/react-native-swiper2/HEAD/src/Swiper.android.js -------------------------------------------------------------------------------- /src/Swiper.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnylqm/react-native-swiper2/HEAD/src/Swiper.ios.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./Swiper'); 2 | --------------------------------------------------------------------------------