颤动构造函数错误
Flutter constructor error
我尝试使用的代码片段有问题,而且由于我是 dart 的新手,所以我不太理解错误消息。有人可以向我解释为什么错误消息显示
The constructor returns type 'dynamic' that isn't of expected type
'widget'.
如何解决?
class MaterialList
不存在。看起来你的意思可能是 TwoLevelList
, which is deprecated. You should try ListView
。
如果您有其他导入语句,请尝试使用别名,因为某些库可能是冲突的原因。
示例:导入 'package:html/parser.dart' 作为解析器;
我尝试使用的代码片段有问题,而且由于我是 dart 的新手,所以我不太理解错误消息。有人可以向我解释为什么错误消息显示
The constructor returns type 'dynamic' that isn't of expected type 'widget'.
如何解决?
class MaterialList
不存在。看起来你的意思可能是 TwoLevelList
, which is deprecated. You should try ListView
。
如果您有其他导入语句,请尝试使用别名,因为某些库可能是冲突的原因。
示例:导入 'package:html/parser.dart' 作为解析器;