BlurEffectStyleKey.swift 197 B

123456789
  1. /**
  2. * SwiftUIVisualEffects
  3. */
  4. import SwiftUI
  5. struct BlurEffectStyleKey: EnvironmentKey {
  6. static var defaultValue: UIBlurEffect.Style = .systemMaterial // (Per the human-interface guidelines.)
  7. }