dudu-mastodon/duduji/ContentView.swift
2023-05-03 18:24:28 +08:00

27 lines
471 B
Swift

//
// ContentView.swift
// duduji
//
// Created by ching on 2023/5/3.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundColor(.accentColor)
Text("Hello, world!")
}
.padding()
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}