mirror of
https://github.com/LiveFastEatTrashRaccoon/RaccoonForLemmy.git
synced 2025-02-09 15:58:57 +01:00
22 lines
377 B
Swift
22 lines
377 B
Swift
import SwiftUI
|
|
import shared
|
|
|
|
@main
|
|
struct iOSApp: App {
|
|
|
|
init() {
|
|
DiHelperKt.doInitKoin()
|
|
}
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ZStack {
|
|
// status bar color
|
|
Color.black.ignoresSafeArea(.all)
|
|
ContentView()
|
|
}
|
|
.preferredColorScheme(.dark)
|
|
}
|
|
}
|
|
}
|