mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-05-19 08:22:00 +00:00
11 lines
181 B
Swift
11 lines
181 B
Swift
import SwiftUI
|
|
|
|
@main
|
|
struct Demo_macOSApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
.windowStyle(.hiddenTitleBar)
|
|
}
|
|
}
|