├── .gitignore ├── LICENSE ├── README.md ├── demo ├── .gitignore ├── .watchmanconfig ├── App.js ├── app.json ├── assets │ ├── icon.png │ └── splash.png ├── babel.config.js ├── package.json └── yarn.lock ├── docs └── Demo-app.gif ├── index.js ├── package.json └── src └── SwipePicker.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninio/react-native-swipe-picker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninio/react-native-swipe-picker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninio/react-native-swipe-picker/HEAD/README.md -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninio/react-native-swipe-picker/HEAD/demo/.gitignore -------------------------------------------------------------------------------- /demo/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /demo/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninio/react-native-swipe-picker/HEAD/demo/App.js -------------------------------------------------------------------------------- /demo/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninio/react-native-swipe-picker/HEAD/demo/app.json -------------------------------------------------------------------------------- /demo/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninio/react-native-swipe-picker/HEAD/demo/assets/icon.png -------------------------------------------------------------------------------- /demo/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninio/react-native-swipe-picker/HEAD/demo/assets/splash.png -------------------------------------------------------------------------------- /demo/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninio/react-native-swipe-picker/HEAD/demo/babel.config.js -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninio/react-native-swipe-picker/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninio/react-native-swipe-picker/HEAD/demo/yarn.lock -------------------------------------------------------------------------------- /docs/Demo-app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninio/react-native-swipe-picker/HEAD/docs/Demo-app.gif -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninio/react-native-swipe-picker/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninio/react-native-swipe-picker/HEAD/package.json -------------------------------------------------------------------------------- /src/SwipePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninio/react-native-swipe-picker/HEAD/src/SwipePicker.js --------------------------------------------------------------------------------