欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

React Native区分安卓/iOS平台

程序员文章站 2022-04-22 17:20:52
React Native区分安卓/iOS平台 import { Platform, } from 'react-native';...

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{

}