Initialisiert Flutter-App

This commit is contained in:
2025-09-25 19:40:51 +02:00
parent 8313337b53
commit 8af2bb5be8
60 changed files with 2402 additions and 1 deletions

35
web/manifest.json Normal file
View File

@@ -0,0 +1,35 @@
{
"name": "dragon_ledger",
"short_name": "dragon_ledger",
"start_url": ".",
"display": "standalone",
"background_color": "#0175C2",
"theme_color": "#0175C2",
"description": "Eine Flutter-App um den Überblick über wiederkehrende Transaktionen und den damit verbunden Kontostand zu behalten.",
"orientation": "portrait-primary",
"prefer_related_applications": false,
"icons": [
{
"src": "icons/Icon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "icons/Icon-512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "icons/Icon-maskable-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "icons/Icon-maskable-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
]
}