Ask your Question
I have a case where I need to display two dialogs on top of each other (#116), and as a workaround I use React Navigation to manage the stack. But due to the way React Native's <Modal> works, the second dialog still doesn't render in this case. To finally fix this issue I've patched the source removing <Modal> (and replacing it with React.Fragment).
Would be nice to have an option to do this using the library's API, similarly to how react-native-modal has the coverScreen prop.