summaryrefslogtreecommitdiff
path: root/Waterfall_UI/Waterfall_UIApp.swift
blob: 6d9a13b226c24d33f964a1023f636bde6579b26c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//
//  Waterfall_UIApp.swift
//  Waterfall_UI
//
//  Created by Jacky Jack on 06/01/2025.
//

import SwiftUI
import SwiftData


@main
struct Waterfall_UIApp: App {
    
    let sdrSpectrum = SDRSpectrum()
    
    @Environment(\.scenePhase) private var scenePhase
    
    var sharedModelContainer: ModelContainer = {
        let schema = Schema([
            Item.self,
        ])
        let modelConfiguration = ModelConfiguration(schema: schema, isStoredInMemoryOnly: false)

        do {
            return try ModelContainer(for: schema, configurations: [modelConfiguration])
        } catch {
            fatalError("Could not create ModelContainer: \(error)")
        }
    }()

    var body: some Scene {
        WindowGroup {
            ContentView()
                .environmentObject(sdrSpectrum)
                .onChange(of: scenePhase) { phase in
                    if phase == .active {
                        Task(priority: .userInitiated) {
                            sdrSpectrum.startRunning()
                        }
                    }
                }
        }
        .modelContainer(sharedModelContainer)
    }
}