如何仅在 Flutter 应用程序上的网络时禁用某些功能?



我看到今天Flutter有一个测试版网络支持。但是,如果我有一些视图或一般一些功能仅支持移动设备,那么如何在为Web构建时才禁用它?可能吗?

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

相关内容

  • 没有找到相关文章

最新更新