02-ContentView-1.swift 272 B

12345678910111213
  1. import SwiftUI
  2. struct ContentView: View {
  3. var body: some View {
  4. VStack {
  5. Image(systemName: "globe")
  6. .imageScale(.large)
  7. .foregroundStyle(.tint)
  8. Text("Hello, world!")
  9. }
  10. .padding()
  11. }
  12. }