🎉 Add watchOS target

This commit is contained in:
2025-10-28 13:07:52 +08:00
parent 76e7ba7898
commit f47e7f1d50
6 changed files with 307 additions and 2 deletions

View File

@@ -0,0 +1,24 @@
//
// ContentView.swift
// WatchRunner Watch App
//
// Created by LittleSheep on 2025/10/28.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}
#Preview {
ContentView()
}