Add web and v2 support to example

This commit is contained in:
Ryan Heise 2020-05-30 01:04:36 +10:00
parent a5a8cd2a09
commit bc766e834c
8 changed files with 78 additions and 16 deletions

23
example/web/manifest.json Normal file
View file

@ -0,0 +1,23 @@
{
"name": "example",
"short_name": "example",
"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"
}
]
}