Created the cross-platform Sample App target in the Xcode project.

This commit is contained in:
2026-07-03 15:11:33 +02:00
parent 53ff7c5198
commit 9cd731e6fc
6 changed files with 418 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}
#Preview {
ContentView()
}