ContentView.swift
1 // 2 // ContentView.swift 3 // OS4 4 // 5 // Created by George on 23.05.24. 6 // 7 8 import SwiftUI 9 10 struct ContentView: View { 11 var body: some View { 12 VStack { 13 Image(systemName: "globe") 14 .imageScale(.large) 15 .foregroundStyle(.tint) 16 Text("Hello, world!") 17 } 18 .padding() 19 } 20 } 21 22 #Preview { 23 ContentView() 24 }