React native trigger/simulate touch event
问题 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? 来源: https://stackoverflow.com/questions/60994249/react-native-trigger-simulate-touch-event