added sth

This commit is contained in:
2026-02-23 22:47:21 +01:00
parent 0f47e034bd
commit 8a528d46ed
8 changed files with 80 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
{
"colors" : [
{
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

View File

@@ -0,0 +1,13 @@
{
"images" : [
{
"idiom" : "universal",
"platform" : "watchos",
"size" : "1024x1024"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

View File

@@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}

View File

@@ -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>

View File

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

View File

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