gpt4 book ai didi

flutter - 如何检测我的 Flutter 应用程序是否在网络中运行?

转载 作者:行者123 更新时间:2023-12-04 13:36:07 24 4
gpt4 key购买 nike

我知道我可以用 Platform.isAndroid 检测操作系统, Platform.isIOS等,但没有像 Platform.isWeb 这样的东西那我怎么能检测到呢?

最佳答案

有一个全局 bool 值 kIsWeb它可以告诉您应用程序是否已编译为在网络上运行。

文档:https://api.flutter.dev/flutter/foundation/kIsWeb-constant.html

import 'package:flutter/foundation.dart' show kIsWeb;

if (kIsWeb) {
// running on the web!
} else {
// NOT running on the web! You can check for additional platforms here.
}

关于flutter - 如何检测我的 Flutter 应用程序是否在网络中运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57937280/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com