copinism-ios/copinism/ContentView.swift
2024-06-04 00:06:19 +08:00

25 lines
387 B
Swift

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