├── .gitignore ├── .idea ├── encodings.xml ├── misc.xml ├── modules.xml ├── react-native-swipe-hidden-header.iml ├── vcs.xml └── workspace.xml ├── .watchmanconfig ├── README.md ├── example ├── .babelrc ├── .flowconfig ├── App.js ├── App.test.js ├── app.json ├── customScrollView.js ├── normal.js ├── package.json ├── src │ ├── index.js │ └── style.js └── yarn.lock ├── package.json └── src ├── index.js └── style.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .expo/ 3 | npm-debug.* 4 | 5 | .idea/* 6 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/react-native-swipe-hidden-header.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/.idea/react-native-swipe-hidden-header.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/README.md -------------------------------------------------------------------------------- /example/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/example/.babelrc -------------------------------------------------------------------------------- /example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/example/.flowconfig -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/example/App.js -------------------------------------------------------------------------------- /example/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/example/App.test.js -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/example/app.json -------------------------------------------------------------------------------- /example/customScrollView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/example/customScrollView.js -------------------------------------------------------------------------------- /example/normal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/example/normal.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/example/src/index.js -------------------------------------------------------------------------------- /example/src/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/example/src/style.js -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/src/index.js -------------------------------------------------------------------------------- /src/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengliu222/react-native-swipe-hidden-header/HEAD/src/style.js --------------------------------------------------------------------------------