MobileMkch-iOS/MobileMkch/MobileMkchApp.swift
2025-08-06 21:34:44 +03:00

26 lines
560 B
Swift

//
// MobileMkchApp.swift
// MobileMkch
//
// Created by Platon on 06.08.2025.
//
import SwiftUI
@main
struct MobileMkchApp: App {
@StateObject private var settings = Settings()
@StateObject private var apiClient = APIClient()
var body: some Scene {
WindowGroup {
NavigationView {
BoardsView()
.environmentObject(settings)
.environmentObject(apiClient)
}
.preferredColorScheme(settings.theme == "dark" ? .dark : .light)
}
}
}