added item and assets to macnearfuture

This commit is contained in:
neon443
2025-05-21 14:52:55 +01:00
parent a64eb03cad
commit ed016217db
73 changed files with 36 additions and 106 deletions

View File

@@ -0,0 +1,36 @@
//
// NearFutureApp.swift
// NearFuture
//
// Created by neon443 on 24/12/2024.
//
import SwiftUI
import SwiftData
@main
struct NearFutureApp: App {
// 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)")
// }
// }()
@StateObject var settingsModel: SettingsViewModel = SettingsViewModel()
var body: some Scene {
WindowGroup {
ContentView(
viewModel: EventViewModel(),
settingsModel: settingsModel
)
.tint(settingsModel.settings.tint.color)
}
// .modelContainer(sharedModelContainer)
}
}