Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我一直在尝试只在ios上添加一些填充,而不是在andoid上。有什么方法可以检查我是在 android 还是 ios 中,这样我就可以在我的应用程序中实现这个功能。提前致谢。
只需Platform.operatingSystem从 io 库中使用。
Platform.operatingSystem
输出是一个字符串,它是:
也可以直接使用Platform.isIOSor Platform.isAndroid。
Platform.isIOS
Platform.isAndroid