用到的库:
//判断设备是苹果还是安卓: if (Platform.isIOS) { print("IOS"); //ios相关代码 } else if (Platform.isAndroid) { print("安卓"); //android相关代码 }