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
| import AppKit | |
| import SwiftUI | |
| import Combine | |
| import OSLog | |
| /// Full screen window that hosts the SwiftUI view. | |
| /// - Can not become active nor main so user stays in the app they were in. | |
| /// - Ignores all mouse events allowing user to interact with content behind it. | |
| /// - Enables mouse events, only when mouse is over its content view. | |
| @MainActor |
OlderNewer