mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-05-17 15:32:01 +00:00
17 lines
418 B
Swift
17 lines
418 B
Swift
import SwiftUI
|
|
import ComposeApp
|
|
|
|
@main
|
|
struct iOSApp: App {
|
|
@UIApplicationDelegateAdaptor(OrientationLockAppDelegate.self) private var appDelegate
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
.preferredColorScheme(.dark)
|
|
.onOpenURL { url in
|
|
AppUrlBridgeKt.handleAppUrl(url: url.absoluteString)
|
|
}
|
|
}
|
|
}
|
|
}
|