├── .npmignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── index.js ├── package.json ├── preview ├── expoQRcode.png ├── navigationTypes.jpg ├── preview1.gif └── preview2.gif └── styles.js /.npmignore: -------------------------------------------------------------------------------- 1 | examples/* 2 | preview/* 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsamacoits/react-native-swipeable-parallax-carousel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsamacoits/react-native-swipeable-parallax-carousel/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsamacoits/react-native-swipeable-parallax-carousel/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsamacoits/react-native-swipeable-parallax-carousel/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsamacoits/react-native-swipeable-parallax-carousel/HEAD/package.json -------------------------------------------------------------------------------- /preview/expoQRcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsamacoits/react-native-swipeable-parallax-carousel/HEAD/preview/expoQRcode.png -------------------------------------------------------------------------------- /preview/navigationTypes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsamacoits/react-native-swipeable-parallax-carousel/HEAD/preview/navigationTypes.jpg -------------------------------------------------------------------------------- /preview/preview1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsamacoits/react-native-swipeable-parallax-carousel/HEAD/preview/preview1.gif -------------------------------------------------------------------------------- /preview/preview2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsamacoits/react-native-swipeable-parallax-carousel/HEAD/preview/preview2.gif -------------------------------------------------------------------------------- /styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidsamacoits/react-native-swipeable-parallax-carousel/HEAD/styles.js --------------------------------------------------------------------------------