SPB Git forge
2commits 1branches 0releases
180.0 KBsize
maindefault branch
1 mo agolast push
Swift 100%
396 B · 15 lines swift
Raw Blame History
1import SwiftUI23@main4struct AdminKaMacApp: App {5    var body: some Scene {6        WindowGroup {7            RootView()8                .frame(minWidth: 420, idealWidth: 520, maxWidth: .infinity,9                       minHeight: 640, idealHeight: 860, maxHeight: .infinity)10        }11        .windowResizability(.contentSize)12        .commands { CommandGroup(replacing: .newItem) {} }13    }14}15