您好,我有这样的代码

SizedBox(height: 10),
        ..._function(context, model),
        SizedBox(height: 5),
        if (model.bloc)
)
但是在升级之后,我将错误重点放在了“...”上
This requires the spread-collection experiment to be enable
我该如何正确重写呢?谢谢

最佳答案

pubspec.yamlenvironment SDK约束更改为:

  sdk: ">=2.7.0 <3.0.0"
使缓存无效并重新启动IDE
Android Studio:文件>>使缓存无效并重新启动。
这样就足够了。

关于flutter - 如何在最新版本的Flutter上修复 “This requires the spread-collection experiment to be enable ”?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/62815422/

10-12 01:49