Add launch configuration, update API keys, and refactor UI components for better structure and performance

This commit is contained in:
Dayron
2025-10-06 14:17:30 +02:00
parent 29141ba8b2
commit 797f77cf69
16 changed files with 371 additions and 351 deletions

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

@@ -0,0 +1,31 @@
{
// 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",
"type": "dart",
"request": "launch",
"program": "lib/main.dart"
},
{
"name": "travel_mate",
"request": "launch",
"type": "dart"
},
{
"name": "travel_mate (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "travel_mate (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
]
}