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
// | |
// PacManLoader.swift | |
// ScriptReader | |
// | |
// Created by Ben Harraway on 14/04/2025. | |
// | |
import SwiftUI | |
struct PacManLoader: View { | |
@State private var progress: CGFloat = 1.0 |
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
<html> | |
<body> | |
<div id="debug"></div> | |
</body> | |
<script> | |
// BroadcastChannel is a browser feature, it allows communication between windows | |
// Find out more here: https://developer.mozilla.org/en-US/docs/Web/API/Broadcast_Channel_API | |
const broadcastChannel = new BroadcastChannel("com.lumen.basketball"); |