Thank you very much! Nice tutorial. I have a question, should I register all my screen before navigate to them? For example(code from official tutorial): const SimpleApp = StackNavigator({ Home: { screen: HomeScreen }, Chat: { screen: ChatScreen }, }); If I have more components, I can't navigate to them by dynamic way, I must register them to SimpleApp. Is there anything I misunderstand ?
How can I get the code of react-router's example? I got stuck with animation for transition between 2 screen. :(
Thank you very much! Nice tutorial. I have a question, should I register all my screen before navigate to them? For example(code from official tutorial):
const SimpleApp = StackNavigator({
Home: { screen: HomeScreen },
Chat: { screen: ChatScreen },
});
If I have more components, I can't navigate to them by dynamic way, I must register them to SimpleApp. Is there anything I misunderstand ?
Exactly :D