这是一个自己的私有插件,没有发布,在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真机运行调试时报错如下:
有没有大佬知道怎么解决,或者提供一些意见或者思路
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…