We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Header title = Book List
Header title = Books
<Router> <Scene key="root"> <Scene key="books" headerMode="none" title="Books"> <Scene key="BookList" component={BookList} title="Book List" /> </Scene> <Scene key="Home" component={Home} title="Home"/> </Scene> </Router>
The text was updated successfully, but these errors were encountered:
What are you navigating to? BookList or books?
BookList
books
Sorry, something went wrong.
it is just the begining and all I have in the router is above app fires up and displays BookList component but with wrong header title
I found soultion
<Router> <Stack key="root" hideNavBar> <Stack key="books" > <Scene key="BookList" component={BookList} title="Book List" /> </Stack> <Scene key="Home" component={Home} title="Home"/> </Stack> </Router>
I will see how it goes when I use more & components
No branches or pull requests
Version
Expected behaviour
Header title = Book List
Actual behaviour
Header title = Books
Steps to reproduce
The text was updated successfully, but these errors were encountered: