xcarpentier / rn-tourguide

🚩Make an interactive step by step tour guide for your react-native app (a rewrite of react-native-copilot)
https://xcarpentier.github.io/rn-tourguide/
Other
702 stars 211 forks source link

Does not work with react-native's modal component #127

Open hunteralan opened 1 year ago

hunteralan commented 1 year ago

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.

ramespra commented 1 year ago

Also an issue for me, I'm using "rn-tourguide": "^3.3.0" and "react-native-modal": "^13.0.0"

dima-devs commented 1 year ago

Hi @hunteralan did you solve this problem?

ajstokar commented 1 year ago

Same issue for me, I'm using the built-in Modal from 'react-native'. Has anyone figured out a workaround?

vladimirevstratov commented 1 year ago

Same issue

Saliheen commented 1 year ago

Same issue

druny commented 6 months ago

Same issue with react-native-popup-menu 0.16.1

PriyavKaneria commented 1 week ago

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