-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rody Davis
committed
Feb 5, 2020
1 parent
65323c2
commit 96f28a8
Showing
75 changed files
with
62,363 additions
and
268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.ttf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}] |
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
'use strict'; | ||
const CACHE_NAME = 'flutter-app-cache'; | ||
const RESOURCES = { | ||
"/index.html": "e36211d86e9c70409c58295974f749a1", | ||
"/main.dart.js": "388e74175cdedc722d22888ba764ee3a", | ||
"/favicon.png": "5dcef449791fa27946b3d35ad8803796", | ||
"/icons/Icon-192.png": "ac9a721a12bbc803b44f645561ecb1e1", | ||
"/icons/Icon-512.png": "96e752610906ba2a93c65f8abe1645f1", | ||
"/manifest.json": "00e0b69b49487ce4f9ff0c5fac8fda49", | ||
"/assets/LICENSE": "ee99dec4151f6911362ee2ce14ada8e5", | ||
"/assets/AssetManifest.json": "2efbb41d7877d10aac9d091f58ccd7b9", | ||
"/assets/FontManifest.json": "01700ba55b08a6141f33e168c4a6c22f", | ||
"/assets/packages/cupertino_icons/assets/CupertinoIcons.ttf": "115e937bb829a890521f72d2e664b632", | ||
"/assets/fonts/MaterialIcons-Regular.ttf": "56d3ffdef7a25659eab6a68a3fbfaf16" | ||
}; | ||
|
||
self.addEventListener('activate', function (event) { | ||
event.waitUntil( | ||
caches.keys().then(function (cacheName) { | ||
return caches.delete(cacheName); | ||
}).then(function (_) { | ||
return caches.open(CACHE_NAME); | ||
}).then(function (cache) { | ||
return cache.addAll(Object.keys(RESOURCES)); | ||
}) | ||
); | ||
}); | ||
|
||
self.addEventListener('fetch', function (event) { | ||
event.respondWith( | ||
caches.match(event.request) | ||
.then(function (response) { | ||
if (response) { | ||
return response; | ||
} | ||
return fetch(event.request, { | ||
credentials: 'include' | ||
}); | ||
}) | ||
); | ||
}); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta content="IE=Edge" http-equiv="X-UA-Compatible"> | ||
<meta name="description" content="A new Flutter project."> | ||
|
||
<!-- iOS meta tags & icons --> | ||
<meta name="apple-mobile-web-app-capable" content="yes"> | ||
<meta name="apple-mobile-web-status-bar-style" content="black"> | ||
<meta name="apple-mobile-web-app-title" content="example"> | ||
<link rel="apple-touch-icon" href="/icons/Icon-192.png"> | ||
|
||
<!-- Favicon --> | ||
<link rel="shortcut icon" type="image/png" href="/favicon.png"/> | ||
|
||
<title>example</title> | ||
<link rel="manifest" href="/manifest.json"> | ||
</head> | ||
<body> | ||
<!-- This script installs service_worker.js to provide PWA functionality to | ||
application. For more information, see: | ||
https://developers.google.com/web/fundamentals/primers/service-workers --> | ||
<script> | ||
if ('serviceWorker' in navigator) { | ||
window.addEventListener('load', function () { | ||
navigator.serviceWorker.register('/flutter_service_worker.js'); | ||
}); | ||
} | ||
</script> | ||
<script src="main.dart.js" type="application/javascript"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.