├── .all-contributorsrc ├── .flowconfig ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── example-assets ├── .DS_Store ├── sideswipe-example.gif ├── sideswipe.gif └── spaced-tesla.gif ├── flow-typed ├── npm │ ├── flow-bin_v0.x.x.js │ └── glow_vx.x.x.js └── react-native.js ├── package.json ├── src ├── carousel.js └── index.js ├── types ├── index.d.ts └── index.js └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkemple/react-native-sideswipe/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkemple/react-native-sideswipe/HEAD/.flowconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkemple/react-native-sideswipe/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkemple/react-native-sideswipe/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vscode/.react -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | example-assets 3 | flow-typed 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkemple/react-native-sideswipe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkemple/react-native-sideswipe/HEAD/README.md -------------------------------------------------------------------------------- /example-assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkemple/react-native-sideswipe/HEAD/example-assets/.DS_Store -------------------------------------------------------------------------------- /example-assets/sideswipe-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkemple/react-native-sideswipe/HEAD/example-assets/sideswipe-example.gif -------------------------------------------------------------------------------- /example-assets/sideswipe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkemple/react-native-sideswipe/HEAD/example-assets/sideswipe.gif -------------------------------------------------------------------------------- /example-assets/spaced-tesla.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkemple/react-native-sideswipe/HEAD/example-assets/spaced-tesla.gif -------------------------------------------------------------------------------- /flow-typed/npm/flow-bin_v0.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkemple/react-native-sideswipe/HEAD/flow-typed/npm/flow-bin_v0.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/glow_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkemple/react-native-sideswipe/HEAD/flow-typed/npm/glow_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/react-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkemple/react-native-sideswipe/HEAD/flow-typed/react-native.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkemple/react-native-sideswipe/HEAD/package.json -------------------------------------------------------------------------------- /src/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkemple/react-native-sideswipe/HEAD/src/carousel.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkemple/react-native-sideswipe/HEAD/src/index.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkemple/react-native-sideswipe/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkemple/react-native-sideswipe/HEAD/types/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkemple/react-native-sideswipe/HEAD/yarn.lock --------------------------------------------------------------------------------