React Native区分安卓/iOS平台

import {
    Platform,
} from ‘react-native‘;
alert(JSON.stringify(Platform));
android手机弹出:{"OS":"android","Version":25,"is Testing":false} 我是android7.1的
如果是苹果OS则为iOS
所以可以用以下判断方式
 
if(Platform.OS===‘android‘){ 
    //如果是android平台
}else{

 

React Native区分安卓/iOS平台

上一篇:HDOJ:6333-Problem B. Harvest of Apples(组合数学+莫队算法+逆元)


下一篇:appium常用api