Skip to content

Instantly share code, notes, and snippets.

@donpark
Created May 3, 2025 17:15
Show Gist options
  • Save donpark/3105c2cc306c80d3707341cf796ab299 to your computer and use it in GitHub Desktop.
Save donpark/3105c2cc306c80d3707341cf796ab299 to your computer and use it in GitHub Desktop.
macOS window with see-through background.
//
// ClearViewApp.swift
// ClearView
//
// Created by Don Park on 5/3/25.
//
import SwiftUI
@main
struct ClearViewApp: App {
var body: some Scene {
WindowGroup {
ContentView()
.containerBackground(.clear, for: .window) // <-- one-liner meat
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment