CLOSE
_onPress(e) {
Another way to solve the problem in question is by using a ref (together with createRef) like so:
const touchableRef = React.createRef();
return (
/* use touchableRef.current */ undefined}
/>
);
Another advantage of doing that is that the ref can be really anything, doesn't have to be the touched node.