30
Multiple Modal components
Activity
Newest
Oldest
Sajid Ali
Attempt to present <RCTModalHostViewController: 0x12a686120> on <UIViewController: 0x11fbc09d0> while a presentation is in progress!
any Idea why i am getting this?
Kevin Vo
I had this problem too, just realized
Héliton Nordt
It's a very annoying bug, couldn't fix it. :/
Tianxin Dai
I just ran into this problem today. I am implementing a login screen where the login screen itself is a modal, and the progress indicator is another modal on top of it. I tried the solution mentioned in https://github.com/facebook/react-native/issues/3445 (nesting a modal inside a modal). However, it doesn't work when I set the both outer and inner modal to invisible...outer modal still shows up. Would love to see this problem fixed.
shalini
@Tianxin Dai: use the setTimeout method. it works.
Ram Bansal
@shalini: can you clarify how to use to setTimeout in a short code snippet?
<ModalA>
<ModalB>
</ModalB>
</ModalA>
Zengyanling
@Ram Bansal: @Ram Bansal: https://github.com/react-native-community/react-native-modal/issues/30 => wkoutre's answer
Ram Bansal
@Zengyanling: Thanks, will take a look :)