Files
watch-untis/watch-untis Watch App/ContentView.swift
2026-02-23 22:47:28 +01:00

23 lines
365 B
Swift

//
// ContentView.swift
// new-app Watch App
//
// Created by Theis on 23.02.26.
//
import SwiftUI
struct WatchContentView: View {
var body: some View {
ScrollView {
VStack(alignment: .leading) {
Text("Lesson1")
Text("Lesson2")
}
}
}
}
#Preview {
WatchContentView()
}