archived whole old project

This commit is contained in:
2026-04-15 21:05:54 +02:00
parent 29b7fd357b
commit d0ba6e3e8e
18 changed files with 0 additions and 14 deletions
@@ -0,0 +1,11 @@
{
"colors" : [
{
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
@@ -0,0 +1,13 @@
{
"images" : [
{
"idiom" : "universal",
"platform" : "watchos",
"size" : "1024x1024"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
@@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}
@@ -0,0 +1,22 @@
//
// 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()
}
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder.WatchKit.Storyboard" version="3.0" toolsVersion="17150" targetRuntime="watchKit" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
<dependencies>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="17122"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBWatchKitPlugin" version="17032"/>
</dependencies>
<scenes>
<!--Interface Controller-->
<scene sceneID="fRD-1l-P1O">
<objects>
<controller id="IGi-cB-aGO"/>
</objects>
</scene>
</scenes>
</document>
@@ -0,0 +1,18 @@
//
// SwiftUIView.swift
// watch-untis Watch App
//
// Created by Theis on 23.02.26.
//
import SwiftUI
struct SwiftUIView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
#Preview {
SwiftUIView()
}
@@ -0,0 +1,17 @@
//
// new_appApp.swift
// new-app Watch App
//
// Created by Theis on 23.02.26.
//
import SwiftUI
@main
struct new_app_Watch_AppApp: App {
var body: some Scene {
WindowGroup {
WatchContentView()
}
}
}