Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

index.html 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <!--
  5. If you are serving your web app in a path other than the root, change the
  6. href value below to reflect the base path you are serving from.
  7. The path provided below has to start and end with a slash "/" in order for
  8. it to work correctly.
  9. For more details:
  10. * https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
  11. This is a placeholder for base href that will be replaced by the value of
  12. the `--base-href` argument provided to `flutter build`.
  13. -->
  14. <base href="$FLUTTER_BASE_HREF">
  15. <meta charset="UTF-8">
  16. <meta content="IE=Edge" http-equiv="X-UA-Compatible">
  17. <meta name="description" content="HRIS Self Service Flutter project.">
  18. <!-- iOS meta tags & icons -->
  19. <meta name="apple-mobile-web-app-capable" content="yes">
  20. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  21. <meta name="apple-mobile-web-app-title" content="hris_selfservice_mobile">
  22. <link rel="apple-touch-icon" href="icons/Icon-192.png">
  23. <!-- Favicon -->
  24. <link rel="icon" type="image/png" href="favicon.png"/>
  25. <title>hris_selfservice_mobile</title>
  26. <link rel="manifest" href="manifest.json">
  27. <script>
  28. // The value below is injected by flutter build, do not touch.
  29. var serviceWorkerVersion = null;
  30. </script>
  31. <!-- This script adds the flutter initialization JS code -->
  32. <script src="flutter.js" defer></script>
  33. </head>
  34. <body>
  35. <script>
  36. window.addEventListener('load', function(ev) {
  37. // Download main.dart.js
  38. _flutter.loader.loadEntrypoint({
  39. serviceWorker: {
  40. serviceWorkerVersion: serviceWorkerVersion,
  41. }
  42. }).then(function(engineInitializer) {
  43. return engineInitializer.initializeEngine();
  44. }).then(function(appRunner) {
  45. return appRunner.runApp();
  46. });
  47. });
  48. </script>
  49. </body>
  50. </html>