Skip to content

Commit d63dede

Browse files
committed
Refactor code structure for improved readability and maintainability
1 parent 9cd58b3 commit d63dede

File tree

4 files changed

+268
-200
lines changed

4 files changed

+268
-200
lines changed

.fvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"flutter": "3.29.2"
2+
"flutter": "3.38.0"
33
}

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,5 @@ app.*.map.json
4747
/android/app/release
4848

4949
# FVM Version Cache
50-
.fvm/
50+
.fvm/
51+
.vscode/settings.json

.vscode/launch.json

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
8+
{
9+
"name": "taskwarrior-flutter (prod)",
10+
"request": "launch",
11+
"type": "dart",
12+
"args": [
13+
"--flavor",
14+
"prod"
15+
]
16+
},
17+
{
18+
"name": "taskwarrior-flutter (nightly)",
19+
"request": "launch",
20+
"type": "dart",
21+
"args": [
22+
"--flavor",
23+
"nightly"
24+
]
25+
},
26+
{
27+
"name": "taskwarrior-flutter (prod profile)",
28+
"request": "launch",
29+
"type": "dart",
30+
"flutterMode": "profile",
31+
"args": [
32+
"--flavor",
33+
"prod"
34+
]
35+
},
36+
{
37+
"name": "taskwarrior-flutter (nightly profile)",
38+
"request": "launch",
39+
"type": "dart",
40+
"flutterMode": "profile",
41+
"args": [
42+
"--flavor",
43+
"nightly"
44+
]
45+
},
46+
{
47+
"name": "taskwarrior-flutter (prod release)",
48+
"request": "launch",
49+
"type": "dart",
50+
"flutterMode": "release",
51+
"args": [
52+
"--flavor",
53+
"prod"
54+
]
55+
},
56+
{
57+
"name": "taskwarrior-flutter (nightly release)",
58+
"request": "launch",
59+
"type": "dart",
60+
"flutterMode": "release",
61+
"args": [
62+
"--flavor",
63+
"nightly"
64+
]
65+
}
66+
]
67+
}

0 commit comments

Comments
 (0)