project 폴더 내에서

fvm use [버전] -f

Android Studio

Flutter SDK path → xxx/project/.fvm/flutter_sdk

VSCode

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
  }
}