Skip to content

Instantly share code, notes, and snippets.

@saschagordner
saschagordner / debug-frame.swift
Created December 29, 2024 10:58
SwiftUI Debug Frame
#if DEBUG
struct DebugFrameModifier: ViewModifier {
let color = Color.red
let lineWidth = 0.5
let spacing: CGFloat = 16
func body(content: Content) -> some View {
content
.border(color)
.overlay(