123456789101112131415161718192021222324 |
- //
- // ContentView.swift
- // PDF Reaer Pro Edition
- //
- // Created by lizhe on 2024/1/15.
- //
- import SwiftUI
- struct ContentView: View {
- var body: some View {
- VStack {
- Image(systemName: "globe")
- .imageScale(.large)
- .foregroundStyle(.tint)
- Text("Hello, world!")
- }
- .padding()
- }
- }
- #Preview {
- ContentView()
- }
|