├── .github ├── CONTRIBUTING_en-us.md ├── CONTRIBUTING_zh-cn.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── README.md ├── doc ├── android.md ├── dependency.md ├── step1.png ├── step2.png └── step3.png ├── example └── addGestureExample.js ├── index.js ├── lib ├── dollarOne │ ├── dollar.js │ ├── gestures.js │ ├── helper.js │ ├── package.json │ └── process.js └── line-trace │ ├── lineTrace.js │ └── package.json └── package.json /.github/CONTRIBUTING_en-us.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElemeFE/react-native-smart-gesture/HEAD/.github/CONTRIBUTING_en-us.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING_zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElemeFE/react-native-smart-gesture/HEAD/.github/CONTRIBUTING_zh-cn.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElemeFE/react-native-smart-gesture/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElemeFE/react-native-smart-gesture/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElemeFE/react-native-smart-gesture/HEAD/README.md -------------------------------------------------------------------------------- /doc/android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElemeFE/react-native-smart-gesture/HEAD/doc/android.md -------------------------------------------------------------------------------- /doc/dependency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElemeFE/react-native-smart-gesture/HEAD/doc/dependency.md -------------------------------------------------------------------------------- /doc/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElemeFE/react-native-smart-gesture/HEAD/doc/step1.png -------------------------------------------------------------------------------- /doc/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElemeFE/react-native-smart-gesture/HEAD/doc/step2.png -------------------------------------------------------------------------------- /doc/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElemeFE/react-native-smart-gesture/HEAD/doc/step3.png -------------------------------------------------------------------------------- /example/addGestureExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElemeFE/react-native-smart-gesture/HEAD/example/addGestureExample.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElemeFE/react-native-smart-gesture/HEAD/index.js -------------------------------------------------------------------------------- /lib/dollarOne/dollar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElemeFE/react-native-smart-gesture/HEAD/lib/dollarOne/dollar.js -------------------------------------------------------------------------------- /lib/dollarOne/gestures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElemeFE/react-native-smart-gesture/HEAD/lib/dollarOne/gestures.js -------------------------------------------------------------------------------- /lib/dollarOne/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElemeFE/react-native-smart-gesture/HEAD/lib/dollarOne/helper.js -------------------------------------------------------------------------------- /lib/dollarOne/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElemeFE/react-native-smart-gesture/HEAD/lib/dollarOne/package.json -------------------------------------------------------------------------------- /lib/dollarOne/process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElemeFE/react-native-smart-gesture/HEAD/lib/dollarOne/process.js -------------------------------------------------------------------------------- /lib/line-trace/lineTrace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElemeFE/react-native-smart-gesture/HEAD/lib/line-trace/lineTrace.js -------------------------------------------------------------------------------- /lib/line-trace/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElemeFE/react-native-smart-gesture/HEAD/lib/line-trace/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElemeFE/react-native-smart-gesture/HEAD/package.json --------------------------------------------------------------------------------