首先导入库
import 'dart:io';
然后就可以直接在flutter中使用了,使用方式如下:
if (Platform.isIOS) {
// ios相关代码
} else if (Platform.isAndroid) {
// android相关代码
} else {
// 其他平台
}
另外,一般作为公共参数的自动读取,也可以使用:
// 请注意,返回值是否正确
args["platform_type"] = Platform.operatingSystem.toUpperCase();
网友评论