在Flutter中启用空安全吗?

huangapple go评论57阅读模式
英文:

Enable null safety in flutter?

问题

请帮我修复这个错误。

我尝试了运行 flutter upgrade 命令,但它没有解决问题。

当我点击获取依赖项时,我收到了类似截图的错误。

你能告诉我最佳解决方案吗?

英文:

Enable null safety in flutter?

Please help me to fix this error.

在Flutter中启用空安全吗?

I tried flutter upgrade cmd but it didn't fix the problem.

When I click get dependencies, I get an error like the screenshot

Can you tell me the best solution for this

答案1

得分: 2

在你的 pubspec.yaml 文件中进行以下更改:

sdk: ">=2.1.0 <3.0.0

更改为

sdk: ">=2.12.0 <3.0.0

英文:

Change in your pubspec.yaml

sdk: ">=2.1.0 <3.0.0

to
sdk: ">=2.12.0 <3.0.0

huangapple
  • 本文由 发表于 2023年5月28日 17:43:28
  • 转载请务必保留本文链接:https://go.coder-hub.com/76350849.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定