diff --git a/.fvmrc b/.fvmrc new file mode 100644 index 00000000..4cac08f7 --- /dev/null +++ b/.fvmrc @@ -0,0 +1,3 @@ +{ + "flutter": "3.29.2" +} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 5888cfde..583fc590 100644 --- a/.gitignore +++ b/.gitignore @@ -45,3 +45,6 @@ app.*.map.json /android/app/debug /android/app/profile /android/app/release + +# FVM Version Cache +.fvm/ \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index 2ea1e069..7348ba08 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,19 +1,19 @@ { - // "editor.minimap.enabled": false, - "html.format.wrapAttributesIndentSize": 4, - "[dart]": { - "editor.tabSize": 4, - "editor.insertSpaces": false, - "editor.detectIndentation": true, - "editor.suggest.insertMode": "replace", - "editor.formatOnSave": true - }, - "editor.formatOnSave": true, - "editor.insertSpaces": false, - "editor.detectIndentation": false, - "editor.tabSize": 4, - "editor.codeActionsOnSave": { - "source.fixAll": "explicit" - }, - "java.configuration.updateBuildConfiguration": "interactive" + "html.format.wrapAttributesIndentSize": 4, + "[dart]": { + "editor.tabSize": 4, + "editor.insertSpaces": false, + "editor.detectIndentation": true, + "editor.suggest.insertMode": "replace", + "editor.formatOnSave": true + }, + "editor.formatOnSave": true, + "editor.insertSpaces": false, + "editor.detectIndentation": false, + "editor.tabSize": 4, + "editor.codeActionsOnSave": { + "source.fixAll": "explicit" + }, + "java.configuration.updateBuildConfiguration": "interactive", + "dart.flutterSdkPath": ".fvm/versions/3.29.2" } \ No newline at end of file