flutter引入插件后编译错误
这是一个自己的私有插件,没有发布,在pubspec.yaml通过本地路径来引入的pubspec.yaml:
printer:path: ./lib/plugins/weprint/
在/lib/plugins/weprint/lib/printer.dart
中写了个测试方法:
class printer {static test(){
print('test');
}
}
然后在项目的main.dart
引入import 'package:printer/printer.dart';
做简单的调用
在as真机运行调试时报错如下:
有没有大佬知道怎么解决,或者提供一些意见或者思路
回答
你用 AS 工具打开这个项目,能看到更多有帮助的信息。
flutter 里面都是简略信息 有帮助的很少
以上是 flutter引入插件后编译错误 的全部内容, 来源链接: utcz.com/a/64509.html