flutter报错:The method '/' was called on null.

2,784 阅读1分钟

出现这个错误的是使用flutter_screenutil时没有初始化,在build中加入

ScreenUtil.instance = ScreenUtil(width: 750, height: 1334)..init(context); 重新运行就好了