react-native-gesture-responder icon indicating copy to clipboard operation
react-native-gesture-responder copied to clipboard

A more convenient and powerful gesture responder than the official PanResponder

Results 10 react-native-gesture-responder issues
Sort by recently updated
recently updated
newest added

Tested on iPhone 5s and Simulator (iPhone 6) using the demo provided. ``` "dependencies": { "babel-eslint": "^8.2.2", "eslint": "^4.19.1", "eslint-plugin-react": "^7.7.0", "react": "^16.3.0-alpha.1", "react-native": "0.54.3", "react-native-gesture-responder": "^0.1.1" }, "devDependencies": {...

and sorry my prettier prettied the code. i also included https://github.com/ldn0x7dc/react-native-gesture-responder/pull/4 but i fear this project is abandoned, so i released the fork under @panter/react-native-gesture-responder

when i tap on the view, it takes 2-3 seconds until onResponderSingleTapConfirmed is called. Tested on android

The ISC license exist in the package json, can you please create a license according to the github doc: https://help.github.com/articles/adding-a-license-to-a-repository/

the moveThreshold option in the config is ignored. Fixed in #4.

@ldn0x7dc, I love what you've done with this library! I see how I can catch a single tap, but how do I get access to a double tap? It's unclear...

Tried updating to newer react native version but got other errors.

![image](https://cloud.githubusercontent.com/assets/19989704/17284791/57bb759c-57f0-11e6-9552-71ad9ebc8097.png) 这是双击时打印的日志,我试过这样绕过 if (!gestureState.doubleTapUp) { if (gestureState.singleTapUp) { this.singleTap(); } } 但是仍然同时触发了单击和双击,这两个事件是否应该是互为逆否?