'Flutter FVM .vscode/settings.json is gone

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

enter image description here



Solution 1:[1]

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

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1