Initial Commit

This commit is contained in:
2026-02-23 21:44:20 +01:00
commit 5c9146d5c4
11 changed files with 868 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
//
// ContentView.swift
// watch-untis Watch App
//
// Created by Theis on 23.02.26.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}
#Preview {
ContentView()
}