maxs15 / react-native-modalbox

A <Modal/> component for react-native
MIT License
2.9k stars 505 forks source link

Opening an another modal by pressing a button inside parent modal not working for ios. #245

Open amrit-sahoo opened 6 years ago

amrit-sahoo commented 6 years ago

I have a modal which has some buttons. By pressing a button I am trying to open another modal. It is working fine in android. But in ios it is not working. Both modal have coverscreen true.

vicky462 commented 6 years ago

Render Your Child Modal inside the parent modal

<Parent_Modal>
<View> ..... </View>

<Child_Modal>

</Child_Modal>

</Parent_Modal>