react-native-boilerplate
react-native-boilerplate copied to clipboard
how to avoid screen appear on bottom bar?
Hey!
I have just a question, i am struggling to solve it for a while now.
I want to have a screen, to navigate there from another using
``
It only works, if i add this screen into the TabNavigator
:
const AppMainTab = TabNavigator({
QrReadDetails: {
screen: QrReadDetails
},
but then in this case, it appears on the bottom bar (next to home, prorfile, etc).
I don't want this to be there, so could you please help me how to solve it that I can naivgate to this screen, but it's not appear on the bottom bar?
Thank you!