flutter dart.html 在web、App双端编译问题 len8657 2020-10-26 3,059 阅读1分钟 Error: Not found: 'dart:html' 项目背景: 1、提供客户端服务 app 2、提供后端管理界面 web 两端代码在同一工程,由于app端没有dart:html 文件编译时会报错Error: Not found: 'dart:html' 解决方案: import 'file_picker_stub.dart' // ignore: uri_does_not_exist if (dart.library.html) 'file_picker_web.dart';