Fix typo in GestureResponderSystem.md
Summary: There is only `timestamp `property in touch native event, `event.nativeEvent.timeStamp` is undefined. Closes https://github.com/facebook/react-native/pull/11988 Differential Revision: D4489408 Pulled By: mkonicek fbshipit-source-id: 0148a4107124438f345b8cb584e1832ba51b3a4b
This commit is contained in:
parent
914848759a
commit
7ed529bf2f
|
@ -55,7 +55,7 @@ If the view is responding, the following handlers can be called:
|
|||
+ `pageX` - The X position of the touch, relative to the root element
|
||||
+ `pageY` - The Y position of the touch, relative to the root element
|
||||
+ `target` - The node id of the element receiving the touch event
|
||||
+ `timeStamp` - A time identifier for the touch, useful for velocity calculation
|
||||
+ `timestamp` - A time identifier for the touch, useful for velocity calculation
|
||||
+ `touches` - Array of all current touches on the screen
|
||||
|
||||
### Capture ShouldSet Handlers
|
||||
|
|
Loading…
Reference in New Issue