rn-tourguide icon indicating copy to clipboard operation
rn-tourguide copied to clipboard

Does not work with react-native's modal component

Open hunteralan opened this issue 2 years ago • 7 comments

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.

hunteralan avatar Dec 15 '22 18:12 hunteralan

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

ramespra avatar Jan 11 '23 03:01 ramespra

Hi @hunteralan did you solve this problem?

dima-devs avatar Apr 06 '23 06:04 dima-devs

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

ajstokar avatar Apr 27 '23 03:04 ajstokar

Same issue

vladimirevstratov avatar May 09 '23 09:05 vladimirevstratov

Same issue

Saliheen avatar Jun 09 '23 07:06 Saliheen

Same issue with react-native-popup-menu 0.16.1

druny avatar Dec 26 '23 23:12 druny

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

PriyavKaneria avatar Jun 26 '24 09:06 PriyavKaneria