只有在 Flutter 应用程序上使用 Web 时,如何才能禁用某些功能?
Posted
技术标签:
【中文标题】只有在 Flutter 应用程序上使用 Web 时,如何才能禁用某些功能?【英文标题】:How can I disable some functionality only if web on Flutter app? 【发布时间】:2020-05-27 18:14:01 【问题描述】:我看到今天 Flutter 有一个测试版 web support。但是,如果我有一些观点或一般情况下仅支持移动设备的某些功能,那么如何仅在我为 Web 构建时才禁用它?有可能吗?
【问题讨论】:
【参考方案1】:import 'package:flutter/foundation.dart';
if (kIsWeb)
// running on the web!
else
// NOT running on the web! You can check for additional platforms here.
此外,如果您想检查内部小部件而不显示移动小部件
child: kIsWeb ? Container():<Mobile Widget>
https://api.flutter.dev/flutter/foundation/kIsWeb-constant.html
【讨论】:
以上是关于只有在 Flutter 应用程序上使用 Web 时,如何才能禁用某些功能?的主要内容,如果未能解决你的问题,请参考以下文章
尝试使用 Firebase 远程配置运行 Flutter WEB 应用程序时出错 [关闭]