Flutter出现以下错误:
NoSuchMethodError: The method ' / was called on null.
Receiver: null
Tried calling: /(1334.0)
解决方案:在调用前先对ScreenUtil.instance初始化宽高,如下:
ScreenUtil.instance = ScreenUtil(width: 750, height: 1334)..init(context);
Flutter出现以下错误:
NoSuchMethodError: The method ' / was called on null.
Receiver: null
Tried calling: /(1334.0)
解决方案:在调用前先对ScreenUtil.instance初始化宽高,如下:
ScreenUtil.instance = ScreenUtil(width: 750, height: 1334)..init(context);
本文标题:Flutter: NoSuchMethodError: The
本文链接:https://www.haomeiwen.com/subject/feigmctx.html
网友评论