View+ClearHostingBackground.swift 219 B

12345678
  1. import SwiftUI
  2. extension View {
  3. /// Prevents root `GeometryReader` views from painting an opaque system background on macOS.
  4. func clearHostingBackground() -> some View {
  5. background(Color.clear)
  6. }
  7. }