primer commit app

This commit is contained in:
2024-04-24 16:09:11 +02:00
commit b1e907ae0c
133 changed files with 5015 additions and 0 deletions

25
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,25 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "flutter_project",
"request": "launch",
"type": "dart"
},
{
"name": "flutter_project (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "flutter_project (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
]
}