Skip to content

Instantly share code, notes, and snippets.

View wojteklu's full-sized avatar
👋

Wojtek Lukaszuk wojteklu

👋
View GitHub Profile
// 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))