React Native app适用于ios和android

时间:2016-01-18 13:04:41

标签: react-native

使应用程序可以在android和ios上运行。对于IOS版本,我想使用NavigatorIOS,而对于Android我只想使用Android 如何根据设备使用正确的导航器?感谢

1 个答案:

答案 0 :(得分:1)

您可以通过React Platform模块获取平台:

var Platform = require("react-native").Platform;
if (Platform.OS === "ios") { }
else if (Platform.OS === "android") { }