project 폴더 내에서
fvm use [버전] -f
Flutter SDK path → xxx/project/.fvm/flutter_sdk
add the file to your project root .vscode/settings.json
{
"dart.flutterSdkPath": ".fvm/flutter_sdk",
// Remove .fvm files from searche
"search.exclude": {
"**/.fvm": true
},
// Remove from file watching
"files.watcherExclude": {
"**/.fvm": true
}
}