- 博客(3)
- 收藏
- 关注
原创 flutter使用flutter_screenutil时报错
width: ScreenUtil.getInstance().setWidth(110), //报错 height: ScreenUtil.getInstance().setHeight(110), //报错 错误:The method 'getInstance' isn't defined for the type 'ScreenUtil'. 修改成: width: ScreenUtil().setWidth(110), height: ScreenUtil().setHei..
2021-08-20 10:36:24
1141
原创 The non-nullable variable ‘_instance‘ must be initialized.
static HttpChannel _instance; //报错 factory(){ if(_instance==null){ _instance=HttpChannel._(); } return _instance; } 改成: static late HttpChannel _instance; factory(){ if(_instance==null){ _instance=HttpChannel._(); } return _insta.
2021-08-19 14:22:06
3697
1
原创 xxx isn‘t a valid override of xxxx
void didPush(Route route, Route previousRoute) { //报错 _currentRouteName=route.settings.name!; super.didPush(route, previousRoute); } 找到他继承的父类方法,将类型改成完全一致 我的父类方法是: class _NavigatorPopObservation extends _NavigatorObservation { _NavigatorPopO.
2021-08-19 13:59:07
1747
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人