From 284bf14d99bc621571076bfa4b67be587f54ff9a Mon Sep 17 00:00:00 2001 From: Riley Ho Date: Tue, 3 Dec 2024 23:25:40 +0800 Subject: [PATCH] chore: add Flutter Version Manager configuration --- .fvmrc | 3 +++ .gitignore | 5 ++++- .vscode/settings.json | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 .fvmrc diff --git a/.fvmrc b/.fvmrc new file mode 100644 index 00000000..ce871608 --- /dev/null +++ b/.fvmrc @@ -0,0 +1,3 @@ +{ + "flutter": "3.7.12" +} diff --git a/.gitignore b/.gitignore index 459b432c..7bb79b2a 100644 --- a/.gitignore +++ b/.gitignore @@ -56,4 +56,7 @@ app.*.map.json /android/app/release # Test files -**/test/ischool_plus_connector_test/credential.json \ No newline at end of file +**/test/ischool_plus_connector_test/credential.json + +# FVM Version Cache +.fvm/ diff --git a/.vscode/settings.json b/.vscode/settings.json index e458c9b4..845d9fd6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,6 @@ { "dart.lineLength": 120, + "dart.flutterSdkPath": ".fvm/versions/3.7.12", "[dart]": { "editor.rulers": [120] },