-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature request] A boolean prop indicating to not use React Native's Modal
#120
Comments
Hi @SimpleCreations , thanks for creating the thread :) I'm not a fan of the
Related ongoing discussions:
In the short term, I'm ok with adding the |
This sounds great 👍 However, I still think a I personally grew fond of the approach of managing multiple dialogs with Perhaps there could be other reasons to manually manage the way the dialogs cover the screen, so I think there should be a way to opt out of default behavior with a prop. |
Yeah, since my initial reply I had a couple of chats and it will probably take a long time until we're able to truly portal a JS view on top of any screen ( So... in the meanwhile, I'm ok with |
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 withReact.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.The text was updated successfully, but these errors were encountered: