1
0
Fork 0
pdsman-ios/PDSMan/ContentView.swift
2025-03-18 22:18:36 -06:00

24 lines
392 B
Swift

//
// ContentView.swift
// PDSMan
//
// Created by Atridad Lahiji on 2025-03-18.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}
#Preview {
ContentView()
}