From be038a9e6fa33c93324885633a07bce8be446d63 Mon Sep 17 00:00:00 2001 From: nite Date: Fri, 6 Mar 2026 01:04:14 +1100 Subject: [PATCH] chore: add fvm config and vscode sdk path --- .fvmrc | 3 +++ .gitignore | 3 +++ .vscode/settings.json | 3 +++ 3 files changed, 9 insertions(+) create mode 100644 .fvmrc create mode 100644 .vscode/settings.json diff --git a/.fvmrc b/.fvmrc new file mode 100644 index 0000000..c300356 --- /dev/null +++ b/.fvmrc @@ -0,0 +1,3 @@ +{ + "flutter": "stable" +} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 3820a95..ac83f76 100644 --- a/.gitignore +++ b/.gitignore @@ -43,3 +43,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 new file mode 100644 index 0000000..1395495 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "dart.flutterSdkPath": ".fvm/versions/stable" +} \ No newline at end of file