react-native-outside-press
react-native-outside-press copied to clipboard
Cannot work with Pressable
I just found that outside-press cannot be work with <Pressable> element. Please find a minimal example below. Any suggestion would be helpful. I'm using this package with expo and web.
<Pressable>click here dosn't work</Pressable>
<OutsidePressHandler onOutsidePress={console.log("press outside")}>
<Text>001</Text>
</OutsidePressHandler>
I just encountered the same issue, is there a solution yet?
I fixed the problem (for web) by replacing the onClick in Container and OutsidePressHandler components with onPointerDown. Can this create issues with other components than Pressable?
I forked the project and created a PR https://github.com/dcangulo/react-native-outside-press/pull/373