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() + } + } +}