Skip to content

Commit 6b45f4e

Browse files
authored
added fvm support to the project (#488)
fvm support for version clarification
1 parent 5f62469 commit 6b45f4e

File tree

3 files changed

+23
-17
lines changed

3 files changed

+23
-17
lines changed

.fvmrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"flutter": "3.29.2"
3+
}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,6 @@ app.*.map.json
4545
/android/app/debug
4646
/android/app/profile
4747
/android/app/release
48+
49+
# FVM Version Cache
50+
.fvm/

.vscode/settings.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
// "editor.minimap.enabled": false,
3-
"html.format.wrapAttributesIndentSize": 4,
4-
"[dart]": {
5-
"editor.tabSize": 4,
6-
"editor.insertSpaces": false,
7-
"editor.detectIndentation": true,
8-
"editor.suggest.insertMode": "replace",
9-
"editor.formatOnSave": true
10-
},
11-
"editor.formatOnSave": true,
12-
"editor.insertSpaces": false,
13-
"editor.detectIndentation": false,
14-
"editor.tabSize": 4,
15-
"editor.codeActionsOnSave": {
16-
"source.fixAll": "explicit"
17-
},
18-
"java.configuration.updateBuildConfiguration": "interactive"
2+
"html.format.wrapAttributesIndentSize": 4,
3+
"[dart]": {
4+
"editor.tabSize": 4,
5+
"editor.insertSpaces": false,
6+
"editor.detectIndentation": true,
7+
"editor.suggest.insertMode": "replace",
8+
"editor.formatOnSave": true
9+
},
10+
"editor.formatOnSave": true,
11+
"editor.insertSpaces": false,
12+
"editor.detectIndentation": false,
13+
"editor.tabSize": 4,
14+
"editor.codeActionsOnSave": {
15+
"source.fixAll": "explicit"
16+
},
17+
"java.configuration.updateBuildConfiguration": "interactive",
18+
"dart.flutterSdkPath": ".fvm/versions/3.29.2"
1919
}

0 commit comments

Comments
 (0)