Skip to content

Instantly share code, notes, and snippets.

View stefanlesser's full-sized avatar

Stefan Lesser stefanlesser

View GitHub Profile
@chriseidhof
chriseidhof / boilerplate.swift
Last active April 17, 2025 11:08
QuickMacApp
// Run any SwiftUI view as a Mac app.
import Cocoa
import SwiftUI
NSApplication.shared.run {
VStack {
Text("Hello, World")
.padding()
.background(Capsule().fill(Color.blue))