1234567891011121314151617181920212223242526 |
- //
- // ContentView.swift
- // iOSFirst
- //
- // Created by 孙宇峰 on 2023/1/31.
- //
-
- 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()
- }
- }
|