FreeAPSApp.swift 372 B

12345678910111213141516
  1. import SwiftUI
  2. @main struct FreeAPSApp: App {
  3. @StateObject var state = WatchStateModel()
  4. @SceneBuilder var body: some Scene {
  5. WindowGroup {
  6. NavigationView {
  7. MainView()
  8. }.environmentObject(state)
  9. }
  10. // WKNotificationScene(controller: NotificationController.self, category: "FreeAPSCategory")
  11. }
  12. }