Files
iKeyMon
Assets.xcassets
Preview Content
ContentView.swift
iKeyMon.entitlements
iKeyMonApp.swift
iKeyMon.xcodeproj
iKeyMon/iKeyMon/ContentView.swift
2025-03-30 15:22:50 +02:00

25 lines
383 B
Swift

//
// ContentView.swift
// iKeyMon
//
// Created by tracer on 30.03.25.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}
#Preview {
ContentView()
}