我使用fvm来实现某种目的使用flutter 1.22,已经安装了所有的fvm,并且只更改了settings.json中的路径,但是文件不在.vscode中,我在任何地方都找不到它

发布于 2022-02-22 09:02:56
您需要手动创建该文件。
.vscode/settings.json
{
"dart.flutterSdkPath": ".fvm/flutter_sdk",
// Remove .fvm files from search
"search.exclude": {
"**/.fvm": true
},
// Remove from file watching
"files.watcherExclude": {
"**/.fvm": true
}
}来源:为VSCode配置fvm
https://stackoverflow.com/questions/71218331
复制相似问题