Initial social.io Swift app

This commit is contained in:
2026-04-17 20:46:27 +02:00
commit ce19d00de3
13 changed files with 2544 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import SwiftUI
@main
struct SocialIOApp: App {
@State private var model = AppViewModel()
var body: some Scene {
WindowGroup {
MailRootView(model: model)
.tint(MailTheme.accent)
.onOpenURL { url in
model.apply(url: url)
}
}
#if os(macOS)
.defaultSize(width: 1440, height: 900)
#endif
}
}