ContentView.swift 472 B

1234567891011121314151617181920212223242526
  1. //
  2. // ContentView.swift
  3. // sdsz74
  4. //
  5. // Created by yunli on 2023/5/18.
  6. //
  7. import SwiftUI
  8. struct ContentView: View {
  9. var body: some View {
  10. VStack {
  11. Image(systemName: "globe")
  12. .imageScale(.large)
  13. .foregroundColor(.accentColor)
  14. Text("Hello, world!")
  15. }
  16. .padding()
  17. }
  18. }
  19. struct ContentView_Previews: PreviewProvider {
  20. static var previews: some View {
  21. ContentView()
  22. }
  23. }