Flutter 报错:The method '/' was ca
2019-12-30 本文已影响0人
坤哥爱卿

原因:出现这个bug是因为没有初始化 flutter_screenutil 加上下面的代码就好了
注意要加在使用flutter_screenutil 的开头
//设计模板参照尺寸
ScreenUtil.instance = ScreenUtil(width: 750, height: 1334)..init(context);
//设计模板参照尺寸
ScreenUtil.instance = ScreenUtil(width: 750, height: 1334)..init(context);