-
-
Notifications
You must be signed in to change notification settings - Fork 39
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
Portal not placed over react native navigation tabs #44
Comments
Other portal libraries like react-native-paper and react-native-portalize behave the same unfortunately.. |
You can solve this by using
|
But this is just valid for IOS |
This works however, when I change the theme it decided to go behind the modal? Then I have to clear cache to make it work :( |
add <Statusbar translucent /> |
If you ment react-native-navigation ( from wix ): I have to hide the bottom tab bar using Navigation.mergeOptions(componentId, {
bottomTabs: {
visible: false,
animate: true, // Optional: use it to animate the transition
},
}); |
As noticed in the below image, my portal, which is the red background with the input, is placed inbetween the navigation view, I want it to be teleported above everything.
The host is placed in App.tsx like this
Any idea how could I achieve what I am trying to do?
The text was updated successfully, but these errors were encountered: