This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{flutter_js}} | |
{{flutter_build_config}} | |
// Manipulate the DOM to add a loading spinner will be rendered with this HTML: | |
// <div class="loading"> | |
// <div class="loader" /> | |
// </div> | |
const loadingDiv = document.createElement('div'); | |
loadingDiv.className = "loading"; | |
document.body.appendChild(loadingDiv); |