Initial Commit

This commit is contained in:
Iain Learmonth 2026-04-12 18:28:47 +01:00
commit 1612ed099c
7 changed files with 433 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{
"colors" : [
{
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

View file

@ -0,0 +1,35 @@
{
"images" : [
{
"idiom" : "universal",
"platform" : "ios",
"size" : "1024x1024"
},
{
"appearances" : [
{
"appearance" : "luminosity",
"value" : "dark"
}
],
"idiom" : "universal",
"platform" : "ios",
"size" : "1024x1024"
},
{
"appearances" : [
{
"appearance" : "luminosity",
"value" : "tinted"
}
],
"idiom" : "universal",
"platform" : "ios",
"size" : "1024x1024"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

View file

@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}

24
dns/ContentView.swift Normal file
View file

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

17
dns/dnsApp.swift Normal file
View file

@ -0,0 +1,17 @@
//
// dnsApp.swift
// dns
//
// Created by irl on 12/04/2026.
//
import SwiftUI
@main
struct dnsApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}