Display bottom sheet above react navigation bottom tab bar
See original GitHub issueAsk your Question
First of all thanks for the great package, I really appreciate your work. I’m currently trying to implement it in our app, and it works great on screens without a bottom tab bar, i.e the bottom tab bar of React Navigation created with createBottomTabNavigator
. Unfortunately on screens with the tab bar it looks like this:
Ideally the bottom sheet should be stacked above the navigation, like this.
Is this currently possible or do you have any hints how to easily do this?
Sorry, if this question already came up and I’ve missed it, but any help would be appreciated
Issue Analytics
- State:
- Created 3 years ago
- Reactions:7
- Comments:27 (1 by maintainers)
Top Results From Across the Web
How to display a bottom sheet from React navigation ...
I want to display a reanimated-bottom-sheet when I click the tabBarIcon (maybe such as button adding in picture) instead of a component. I'm ......
Read more >How to place custom bottom sheet above bottom tab navigator?
I've built a custom bottom sheet using Reanimated2 but am having trouble placing it above the bottomTabNavigator tabbar. I need the sheet to ......
Read more >Bottom Tabs Navigator | React Navigation
A simple tab bar on the bottom of the screen that lets you switch between different routes. Routes are lazily initialized -- their...
Read more >Tutorial: React Native Custom Bottom Bar with BottomSheet
This will allow us to navigate to different pages within the currently selected tab. We can also set specific options for each screen....
Read more >React Navigation 6: Hiding bottom tab on a specific screen
The Example. App Preview. This sample app contains 3 screens: Home, Product, and Contact. The bottom tab bar is only visible ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@bo3hm you will need to use
BottomSheetModal
and add its provider to the root component of you application 👍For those of you who are still struggling, here’s a concrete example without using react-native-portal, as the author of the lib stated:
First, the provider:
The documentation needed:
I’m using v4 (alpha).