|
|
|
@ -23,45 +23,24 @@ |
|
|
|
|
<!-- 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"> |
|
|
|
|
<meta name="apple-mobile-web-app-title" content="Flutter Quill Example"> |
|
|
|
|
<link rel="apple-touch-icon" href="icons/Icon-192.png"> |
|
|
|
|
|
|
|
|
|
<!-- Favicon --> |
|
|
|
|
<link rel="icon" type="image/png" href="favicon.png"/> |
|
|
|
|
|
|
|
|
|
<title>example</title> |
|
|
|
|
<title>Flutter Quill Example</title> |
|
|
|
|
<link rel="manifest" href="manifest.json"> |
|
|
|
|
|
|
|
|
|
<!-- Croppie for `image_cropper` plugin --> |
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/croppie/2.6.5/croppie.css" /> |
|
|
|
|
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/exif-js/2.3.0/exif.js"></script> |
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/croppie/2.6.5/croppie.min.js"></script> |
|
|
|
|
<!-- Croppie for `image_cropper` plugin --> |
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/croppie/2.6.5/croppie.css" /> |
|
|
|
|
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/exif-js/2.3.0/exif.js"></script> |
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/croppie/2.6.5/croppie.min.js"></script> |
|
|
|
|
|
|
|
|
|
<!-- Requirement by flutter_inappwebview, for more info: https://pub.dev/packages/flutter_inappwebview#installation --> |
|
|
|
|
<script type="application/javascript" src="/assets/packages/flutter_inappwebview_web/assets/web/web_support.js" defer></script> |
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
// The value below is injected by flutter build, do not touch. |
|
|
|
|
const serviceWorkerVersion = null; |
|
|
|
|
</script> |
|
|
|
|
<!-- This script adds the flutter initialization JS code --> |
|
|
|
|
<script src="flutter.js" defer></script> |
|
|
|
|
<!-- Requirement by flutter_inappwebview, for more info: https://pub.dev/packages/flutter_inappwebview#installation --> |
|
|
|
|
<script type="application/javascript" src="/assets/packages/flutter_inappwebview_web/assets/web/web_support.js" defer></script> |
|
|
|
|
</head> |
|
|
|
|
<body> |
|
|
|
|
<script> |
|
|
|
|
window.addEventListener('load', function(ev) { |
|
|
|
|
// Download main.dart.js |
|
|
|
|
_flutter.loader.loadEntrypoint({ |
|
|
|
|
serviceWorker: { |
|
|
|
|
serviceWorkerVersion: serviceWorkerVersion, |
|
|
|
|
}, |
|
|
|
|
onEntrypointLoaded: function(engineInitializer) { |
|
|
|
|
engineInitializer.initializeEngine().then(function(appRunner) { |
|
|
|
|
appRunner.runApp(); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
</script> |
|
|
|
|
<script src="flutter_bootstrap.js" async></script> |
|
|
|
|
</body> |
|
|
|
|
</html> |
|
|
|
|