├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── demo.gif ├── package.json └── src ├── index.js └── styles.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/react-native-modal-filter-picker/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/react-native-modal-filter-picker/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | demo.gif 2 | 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "semi" : false 3 | } -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/react-native-modal-filter-picker/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/react-native-modal-filter-picker/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/react-native-modal-filter-picker/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/react-native-modal-filter-picker/HEAD/demo.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/react-native-modal-filter-picker/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/react-native-modal-filter-picker/HEAD/src/index.js -------------------------------------------------------------------------------- /src/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/react-native-modal-filter-picker/HEAD/src/styles.js --------------------------------------------------------------------------------