如何仅在 Flutter 应用程序上使用 Web 时禁用某些功能?
How can I disable some functionality only if web on Flutter app?
我看到今天 flutter 有一个 beta web support。但是,如果我有某些视图或通常仅支持移动设备的某些功能,那么如何仅在为网络构建时禁用它?可能吗?
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 有一个 beta web support。但是,如果我有某些视图或通常仅支持移动设备的某些功能,那么如何仅在为网络构建时禁用它?可能吗?
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