feat(app): Добавить fluttergen (#3)

Co-authored-by: PetrovY <y.petrov@friflex.com>
This commit is contained in:
Yuri Petrov
2025-02-06 09:30:08 +03:00
committed by GitHub
parent 6b97503fba
commit facf6e9fe2
25 changed files with 685 additions and 193 deletions

19
.vscode/tasks.json vendored
View File

@@ -1,6 +1,19 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "fluttergen",
"type": "shell",
"command": "/Users/yura/.pub-cache/bin/fluttergen",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always"
},
"problemMatcher": []
},
{
"label": "build_runner --delete-conflicting-outputs",
"type": "shell",
@@ -41,13 +54,13 @@
{
"label": "switch_to_gms",
"type": "shell",
"command": "./switch_service.sh gms",
"problemMatcher": []
"command": "./tools/switch_service.sh gms",
"problemMatcher": []
},
{
"label": "switch_to_aurora",
"type": "shell",
"command": "./switch_service.sh aurora",
"command": "./tools/switch_service.sh aurora",
"problemMatcher": []
}
]