ContentView.swift 397 B

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