如何创建具有多个页面的应用程序本机?

时间:2015-11-12 15:44:51

标签: javascript android reactjs react-native

我不明白如何使用超过1页的本地创建应用程序。如何使用超链接从1页面导航到其他页面?每个* .js文件中的每个页面?你能为我提供2页的简单例子吗?谢谢。

1 个答案:

答案 0 :(得分:2)

要在React Native中从视图移动到视图,您需要使用Navigator或NavigatorIOS。以下是每个文档:

https://facebook.github.io/react-native/docs/navigatorios.html

https://facebook.github.io/react-native/docs/navigator.html#content

此外,还有一些如何在React Native的GitHub存储库here中使用它们的示例。

https://github.com/facebook/react-native/tree/master/Examples/UIExplorer/Navigator