天津网站制作推广,企业邮箱888,网站建设的公司系统规划,学校申请建设网站的原因代码如下 
import package:flutter/foundation.dart show kIsWeb;void main() {if (kIsWeb) {print(Running on the web!);} else {print(Not running on the web!);}
} 
如果是使用 
Platform.isAndroid 会报错  所以使用上面的方式代码如下 
import package:flutter/foundation.dart show kIsWeb;void main() {if (kIsWeb) {print(Running on the web!);} else {print(Not running on the web!);}
} 
如果是使用 
Platform.isAndroid 会报错  所以使用上面的方式