本文主要是介绍[已解决] You can enable the experiment using the ‘--enable-experiment=non-nullable‘ command line option,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Error: This requires the null safety language feature,
which is experimental. You can enable the experimentusing the '--enable-experiment=non-nullable' command line option.
解决方法
解决这个问题需要两个步骤:
- 确认 Flutter 版本(若版本过低,即便调整下方 SDK 版本也无法成功让环境运作)
- 在pubspec.yaml文件中调整environment参数底下的sdk版本。
(可以先调整 SDK 版本,若无法顺利让环境运作,再来升级 Flutter 版本)
flutter upgrade
environment:sdk: ">=2.12.0 <3.0.0"
这篇关于[已解决] You can enable the experiment using the ‘--enable-experiment=non-nullable‘ command line option的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!