18 lines
580 B
Swift
18 lines
580 B
Swift
// TVAnarchy iOS — a thin bridge client: browse the network library, stream/play
|
|
// in-app via VLCKit. All heavy logic (scan, transport, downloads, metadata)
|
|
// lives behind the plum-control-bridge; this app speaks only HTTP to it.
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct TVAnarchyiOSApp: App {
|
|
@StateObject private var settings = BridgeSettings()
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
LibraryView()
|
|
.environmentObject(settings)
|
|
.preferredColorScheme(.dark) // dark-first, matches LilithDesignTokens palette
|
|
}
|
|
}
|
|
}
|