From 8a528d46edeaffe738f41621308c8fcff2de8b13 Mon Sep 17 00:00:00 2001 From: Theis Gaedigk Date: Mon, 23 Feb 2026 22:47:21 +0100 Subject: [PATCH] added sth --- .../AccentColor.colorset/Contents.json | 11 +++++++++++ .../AppIcon.appiconset/Contents.json | 13 +++++++++++++ .../Assets.xcassets/Contents.json | 6 ++++++ .../watch-untis Watch App}/ContentView.swift | 0 .../watch-untis Watch App}/mock.json | 0 watch-untis Watch App/Storyboard.storyboard | 15 +++++++++++++++ watch-untis Watch App/SwiftUIView.swift | 18 ++++++++++++++++++ watch-untis Watch App/new_appApp.swift | 17 +++++++++++++++++ 8 files changed, 80 insertions(+) create mode 100644 watch-untis Watch App - AI_APP/watch-untis Watch App/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 watch-untis Watch App - AI_APP/watch-untis Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 watch-untis Watch App - AI_APP/watch-untis Watch App/Assets.xcassets/Contents.json rename {watch-untis Watch App => watch-untis Watch App - AI_APP/watch-untis Watch App}/ContentView.swift (100%) rename {watch-untis Watch App => watch-untis Watch App - AI_APP/watch-untis Watch App}/mock.json (100%) create mode 100644 watch-untis Watch App/Storyboard.storyboard create mode 100644 watch-untis Watch App/SwiftUIView.swift create mode 100644 watch-untis Watch App/new_appApp.swift diff --git a/watch-untis Watch App - AI_APP/watch-untis Watch App/Assets.xcassets/AccentColor.colorset/Contents.json b/watch-untis Watch App - AI_APP/watch-untis Watch App/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000..eb87897 --- /dev/null +++ b/watch-untis Watch App - AI_APP/watch-untis Watch App/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/watch-untis Watch App - AI_APP/watch-untis Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json b/watch-untis Watch App - AI_APP/watch-untis Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..49c81cd --- /dev/null +++ b/watch-untis Watch App - AI_APP/watch-untis Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,13 @@ +{ + "images" : [ + { + "idiom" : "universal", + "platform" : "watchos", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/watch-untis Watch App - AI_APP/watch-untis Watch App/Assets.xcassets/Contents.json b/watch-untis Watch App - AI_APP/watch-untis Watch App/Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/watch-untis Watch App - AI_APP/watch-untis Watch App/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/watch-untis Watch App/ContentView.swift b/watch-untis Watch App - AI_APP/watch-untis Watch App/ContentView.swift similarity index 100% rename from watch-untis Watch App/ContentView.swift rename to watch-untis Watch App - AI_APP/watch-untis Watch App/ContentView.swift diff --git a/watch-untis Watch App/mock.json b/watch-untis Watch App - AI_APP/watch-untis Watch App/mock.json similarity index 100% rename from watch-untis Watch App/mock.json rename to watch-untis Watch App - AI_APP/watch-untis Watch App/mock.json diff --git a/watch-untis Watch App/Storyboard.storyboard b/watch-untis Watch App/Storyboard.storyboard new file mode 100644 index 0000000..b962444 --- /dev/null +++ b/watch-untis Watch App/Storyboard.storyboard @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/watch-untis Watch App/SwiftUIView.swift b/watch-untis Watch App/SwiftUIView.swift new file mode 100644 index 0000000..86e7ff1 --- /dev/null +++ b/watch-untis Watch App/SwiftUIView.swift @@ -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() +} diff --git a/watch-untis Watch App/new_appApp.swift b/watch-untis Watch App/new_appApp.swift new file mode 100644 index 0000000..43b3cfa --- /dev/null +++ b/watch-untis Watch App/new_appApp.swift @@ -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 { + ContentView() + } + } +}