We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc49819 commit c97c2b7Copy full SHA for c97c2b7
web/index.html
@@ -131,13 +131,18 @@
131
<div id="splash-container" class="center">
132
<div class="loader"></div>
133
</div>
134
+ <script src="flutter.js" defer></script>
135
<script>
- { { flutter_bootstrap_js } }
136
+ window.addEventListener('load', function () {
137
+ _flutter.loader.loadEntrypoint({
138
+ onEntrypointLoaded: function (engineInitializer) {
139
+ engineInitializer.initializeEngine().then(function (appRunner) {
140
+ appRunner.runApp();
141
+ });
142
+ }
143
144
145
</script>
-
146
</body>
147
-</html>
148
+</html>
0 commit comments