Navigating React Native Navigation - Kurtis Kemple

Поділитися
Вставка

КОМЕНТАРІ • 3

  • @trangcongthanh
    @trangcongthanh 7 років тому

    How can I get the code of react-router's example? I got stuck with animation for transition between 2 screen. :(

  • @wenchengju5243
    @wenchengju5243 7 років тому +1

    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 ?