Added login screen and Tree page screen to test graph view package

This commit is contained in:
Abdullah-Alassaf
2024-05-16 01:01:14 +03:00
parent a8dd969e07
commit 71bba79887
137 changed files with 5399 additions and 0 deletions

35
web/manifest.json Normal file
View File

@ -0,0 +1,35 @@
{
"name": "syncrow_web",
"short_name": "syncrow_web",
"start_url": ".",
"display": "standalone",
"background_color": "#0175C2",
"theme_color": "#0175C2",
"description": "A new Flutter project.",
"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"
}
]
}