Skip to content

Commit

Permalink
New
Browse files Browse the repository at this point in the history
  • Loading branch information
harshilchovatiya committed Jul 27, 2024
1 parent fd49cae commit 813c414
Show file tree
Hide file tree
Showing 3 changed files with 20,186 additions and 20,177 deletions.
6 changes: 3 additions & 3 deletions flutter_service_worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ const RESOURCES = {"assets/AssetManifest.bin": "ee521f318288a47daf5b1fb241183080
"icons/Icon-512.png": "f97f9a5c7e334669fffb365285b22ed4",
"icons/Icon-maskable-192.png": "e48fe306b276759dbedc32c8bfc5172c",
"icons/Icon-maskable-512.png": "f97f9a5c7e334669fffb365285b22ed4",
"index.html": "de2e80550b7e7293e195373336df4135",
"/": "de2e80550b7e7293e195373336df4135",
"main.dart.js": "9b94b7c2db58c7c03c8f568c28808ccc",
"index.html": "bbfd414a1c5907a90002ad302ea1206b",
"/": "bbfd414a1c5907a90002ad302ea1206b",
"main.dart.js": "4285e0496fbef4212b0dd630ec7f6838",
"manifest.json": "005732528e2e36122a7858864a45ca41",
"version.json": "52aa528ad83387893602a22bd46f86da"};
// The application shell files that are downloaded before a service worker can
Expand Down
17 changes: 7 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<!DOCTYPE html>
<html>

<head>
<!--
If you are serving your web app in a path other than the root, change the
Expand All @@ -15,7 +14,7 @@
This is a placeholder for base href that will be replaced by the value of
the `--base-href` argument provided to `flutter build`.
-->
<base href="/InspireView/" />
<base href="/InspireView/"/>

<meta charset="UTF-8">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
Expand All @@ -28,35 +27,33 @@
<link rel="apple-touch-icon" href="icons/Icon-192.png">

<!-- Favicon -->
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="icon" type="image/png" href="favicon.png"/>

<title>inspire_view</title>
<link rel="manifest" href="manifest.json">

<script>
// The value below is injected by flutter build, do not touch.
const serviceWorkerVersion = "1234261135";
const serviceWorkerVersion = "1760688386";
</script>
<!-- This script adds the flutter initialization JS code -->
<script src="flutter.js" defer></script>
</head>

<body>
<script>
window.addEventListener('load', function (ev) {
window.addEventListener('load', function(ev) {
// Download main.dart.js
_flutter.loader.loadEntrypoint({
serviceWorker: {
serviceWorkerVersion: serviceWorkerVersion,
},
onEntrypointLoaded: function (engineInitializer) {
engineInitializer.initializeEngine().then(function (appRunner) {
onEntrypointLoaded: function(engineInitializer) {
engineInitializer.initializeEngine().then(function(appRunner) {
appRunner.runApp();
});
}
});
});
</script>
</body>

</html>
</html>
Loading

0 comments on commit 813c414

Please sign in to comment.