美文网首页
Flutter 判断是andriod或者ios

Flutter 判断是andriod或者ios

作者: kaka0203x | 来源:发表于2022-07-08 14:21 被阅读0次

    @override

      void initState() {

        if (Platform.isIOS) {

          print("IOS");

        } else if (Platform.isAndroid) {

          print("安卓");

        }

      }

    参考:

    原文链接:https://blog.csdn.net/weixin_46504917/article/details/119828774

    相关文章

      网友评论

          本文标题:Flutter 判断是andriod或者ios

          本文链接:https://www.haomeiwen.com/subject/hkkvbrtx.html