Reputation: 1236
im using fvm
to use flutter 1.22
for some purpose, already install everything for fvm and only change the path in settings.json
but the file is not there in .vscode
i cannot find it anywhere
Upvotes: 2
Views: 1952
Reputation: 833
You need to create the file manually.
.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
}
}
Source: Configure fvm for VSCode
Upvotes: 2