iKeyMon
Assets.xcassets
Preview Content
ContentView.swift
iKeyMon.entitlements
iKeyMonApp.swift
iKeyMon.xcodeproj
25 lines
383 B
Swift
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()
|
|
}
|