CCP
CCP

Reputation: 1236

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

Upvotes: 2

Views: 1952

Answers (1)

Ovidiu Uşvat
Ovidiu Uşvat

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

Related Questions