Setup
I have 2 screens, let us call them A and B.
Screen A is showing the camera image recorded by the back camera of the phone (third party library which i do not have further access to). Screen B has a semi transparent background and some UI elements (e.g. Buttons)
Task
I can not add UI elements to Screen A directly (third party) that's why i'm using react-native-navigation V2 to overlay Screen B via Navigation.showOverlay on top of Screen A.
Problem
Both screens need to react to touch events but it seems like the overlay of Screen B blocks these events on Screen A.
Question
Is it somehow possible to pass all touch events down from Screen B (UI with Overlay) to Screen A (Camera Screen which also needs to react to touch events) so that both screens are capable of reacting to user input?
In case someone is interested in the third party component i'm talking about: https://github.com/brave-digital/react-native-wikitude/issues/10
try prop pointerEvents='box-none' or refer this issue