mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
<!DOCTYPE HTML>
|
|
<!-- Copyright 2014 The Flutter Authors. All rights reserved.
|
|
Use of this source code is governed by a BSD-style license that can be
|
|
found in the LICENSE file. -->
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
|
|
|
|
<title>Web Test</title>
|
|
<!-- iOS meta tags & icons -->
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
|
<meta name="apple-mobile-web-app-title" content="Web Test">
|
|
<link rel="manifest" href="manifest.json">
|
|
<script>
|
|
// The value below is injected by flutter build, do not touch.
|
|
var serviceWorkerVersion = null;
|
|
</script>
|
|
<!-- This script adds the flutter initialization JS code -->
|
|
<script src="flutter.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
window.addEventListener('load', function(ev) {
|
|
// Download main.dart.js
|
|
_flutter.loader.loadEntrypoint({
|
|
serviceWorker: {
|
|
serviceWorkerVersion: serviceWorkerVersion,
|
|
}
|
|
}).then(function(engineInitializer) {
|
|
return engineInitializer.initializeEngine();
|
|
}).then(function(appRunner) {
|
|
return appRunner.runApp();
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|