我看到今天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