add Mac target and delet tests

This commit is contained in:
neon443
2025-05-21 14:45:04 +01:00
parent 7c7f72a5d4
commit a64eb03cad
9 changed files with 283 additions and 158 deletions

View File

@@ -0,0 +1,24 @@
//
// ContentView.swift
// MacNearFuture
//
// Created by neon443 on 21/05/2025.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}
#Preview {
ContentView()
}