I want to create a tab bar navigator like the one in the image, but everything I’ve seen online does not accomplish this task. Any advice is appreciated
Question posted in React native
The official React Native documentation can be found here.
The official React Native documentation can be found here.
2
Answers
I figured out a way to do it using this example example
I had to add a few extra lines (below) to make it look like the image
You can build it custom using the
tabBar
property, which allows passing in a component to use for the entire tab bar:https://reactnavigation.org/docs/bottom-tab-navigator/#tabbar
The docs above provide a good example of an entirely custom tab bar.