| <!DOCTYPE html> |
| <!-- Copyright 2013 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> |
| <!--#docregion script-tag--> |
| <head> |
| <!--#enddocregion script-tag--> |
| <base href="$FLUTTER_BASE_HREF"> |
| |
| <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-app-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="icon" type="image/png" href="favicon.png"/> |
| |
| <title>Authentication Example</title> |
| <link rel="manifest" href="manifest.json"> |
| |
| <script> |
| // The value below is injected by flutter build, do not touch. |
| var serviceWorkerVersion = null; |
| </script> |
| <!--#docregion script-tag--> |
| <!-- Include the GSI SDK below --> |
| <script src="https://accounts.google.com/gsi/client" async defer></script> |
| <!-- This script adds the flutter initialization JS code --> |
| <script src="flutter.js" defer></script> |
| </head> |
| <!--#enddocregion script-tag--> |
| <body> |
| <script> |
| window.addEventListener('load', function(ev) { |
| // Download main.dart.js |
| _flutter.loader.loadEntrypoint({ |
| serviceWorker: { |
| serviceWorkerVersion: serviceWorkerVersion, |
| }, |
| onEntrypointLoaded: function(engineInitializer) { |
| engineInitializer.autoStart(); |
| } |
| }); |
| }); |
| </script> |
| </body> |
| </html> |