React native trigger/simulate touch event

Viewed 916

How do I simulate the touch event in React native?

Basically I have X and Y cordinates of an onPress event and want to trigger a touch event at the same position again.

This is doable in javascript

document.elementFromPoint(x, y).click();

But doable in RN?

0 Answers
Related