blob: 2ec4da33dd3d005735c259b26c4574a59bff325b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// BlurView.swift
// MullvadVPN
//
// Created by Jon Petersson on 2024-12-06.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import SwiftUI
/// Blurred (background) view using a `UIBlurEffect`.
struct BlurView: View {
var style: UIBlurEffect.Style
var body: some View {
VisualEffectView(effect: UIBlurEffect(style: style))
.opacity(0.8)
}
}
|