Initial GrowthLapse app

This commit is contained in:
Mikei386
2026-06-02 20:36:04 +02:00
commit 4ea04dc3e4
7 changed files with 2107 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import SwiftUI
@main
struct GrowthLapseApp: App {
var body: some Scene {
WindowGroup {
ContentView()
.frame(minWidth: 980, minHeight: 680)
}
.windowStyle(.titleBar)
}
}