mirror of
https://github.com/neon443/NearFuture.git
synced 2026-03-11 06:49:12 +00:00
25 lines
448 B
Swift
25 lines
448 B
Swift
//
|
|
// MacNearFutureApp.swift
|
|
// MacNearFuture
|
|
//
|
|
// Created by neon443 on 21/05/2025.
|
|
//
|
|
|
|
import Foundation
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct NearFutureApp: App {
|
|
@StateObject var settingsModel: SettingsViewModel = SettingsViewModel()
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView(
|
|
viewModel: EventViewModel(),
|
|
settingsModel: settingsModel
|
|
)
|
|
.tint(settingsModel.settings.tint.color)
|
|
}
|
|
.windowIdealSize(.fitToContent)
|
|
}
|
|
}
|