diff --git a/README.md b/README.md index 1189e10..8e7770b 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ The demos in this repository run on the following platforms: | macOS | ⚠️ with custom engine branch (see instructions below) | | Windows | ⚠️ with custom engine branch (see instructions below) | | Linux | ❌ | +| Web | ✅ (`flutter run -d chrome`) | ## How to use? diff --git a/web/favicon.png b/web/favicon.png new file mode 100644 index 0000000..8aaa46a Binary files /dev/null and b/web/favicon.png differ diff --git a/web/icons/Icon-192.png b/web/icons/Icon-192.png new file mode 100644 index 0000000..b749bfe Binary files /dev/null and b/web/icons/Icon-192.png differ diff --git a/web/icons/Icon-512.png b/web/icons/Icon-512.png new file mode 100644 index 0000000..88cfd48 Binary files /dev/null and b/web/icons/Icon-512.png differ diff --git a/web/icons/Icon-maskable-192.png b/web/icons/Icon-maskable-192.png new file mode 100644 index 0000000..eb9b4d7 Binary files /dev/null and b/web/icons/Icon-maskable-192.png differ diff --git a/web/icons/Icon-maskable-512.png b/web/icons/Icon-maskable-512.png new file mode 100644 index 0000000..d69c566 Binary files /dev/null and b/web/icons/Icon-maskable-512.png differ diff --git a/web/index.html b/web/index.html new file mode 100644 index 0000000..f43bfc9 --- /dev/null +++ b/web/index.html @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + multiview_sample + + + + + + + +
+
+ +
+ + + diff --git a/web/manifest.json b/web/manifest.json new file mode 100644 index 0000000..530ab64 --- /dev/null +++ b/web/manifest.json @@ -0,0 +1,35 @@ +{ + "name": "multiview_sample", + "short_name": "multiview_sample", + "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" + } + ] +}