mycode/myApp/HaruDanim/IOS/ContentView.swift
2026-07-03 22:01:08 +09:00

25 lines
386 B
Swift

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