Initial Commit

This commit is contained in:
2026-03-13 19:32:20 +01:00
commit 4aa0d808ac
8 changed files with 447 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
//
// ContentView.swift
// VikunjaApp
//
// Created by Justin Schwegmann on 13.03.26.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}
#Preview {
ContentView()
}