【发布时间】:2021-09-10 23:04:02
【问题描述】:
当我启动我的应用程序时,我得到一个异常Error loading AssetManifest.json, e: Null check operator used on a null value,我不知道它来自哪里。与Null check operator used on a null value 的问题相反,除了这段短代码,我没有在任何地方使用 bang 运算符:
return Text(
widget.text,
style: Theme.of(context).textTheme.bodyText1!.copyWith(
fontWeight: FontWeight.bold
),
);
在此处对这段代码的所有调用后都会引发异常,因此这不是源代码。
我也不知道Error loading AssetManifest.json 是什么意思,只能找到类似听起来问题的解决方案,但没有解决我的问题。
我还打开了一个 GitHub 问题,结果为 flutter run --verbose、flutter analyze 和 flutter doctor -v:https://github.com/flutter/flutter/issues/85457
如果有人能帮助我,那就太好了。
【问题讨论】: