rename to desktopduck

This commit is contained in:
neon443
2025-09-12 05:59:48 +01:00
parent 019cebfe7a
commit b35932488b
8 changed files with 7 additions and 7 deletions

View File

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