rn-tourguide
rn-tourguide copied to clipboard
Does not work with react-native's modal component
When attempting to use this package with react-native's modal component, the tour's highlighted area shows behind the modal. Styling has not been able to fix this for me thus far.
Also an issue for me, I'm using "rn-tourguide": "^3.3.0"
and "react-native-modal": "^13.0.0"
Hi @hunteralan did you solve this problem?
Same issue for me, I'm using the built-in Modal from 'react-native'. Has anyone figured out a workaround?
Same issue
Same issue
Same issue with react-native-popup-menu
0.16.1
I was able to solve this issue using coverScreen
property of react-native-modal
like so
<Modal
coverScreen={false}
... //other props
>
but note that as the property suggests, your modal backdrop will no longer cover the statusbar, if any hope this helps