英文:
Enable null safety in flutter?
问题
请帮我修复这个错误。
我尝试了运行 flutter upgrade
命令,但它没有解决问题。
当我点击获取依赖项时,我收到了类似截图的错误。
你能告诉我最佳解决方案吗?
英文:
Enable null safety in flutter?
Please help me to fix this error.
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
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论