Mercurial > public > lazybear
view LazyBear/Views/Global Helpers/BlurBackground.swift @ 387:c206bd0bdb4e
Implementing RenameSheet.swift
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Sat, 24 Apr 2021 12:21:23 +0200 |
parents | |
children |
line wrap: on
line source
// // BlurBackground.swift // LazyBear // // Created by Dennis Concepción Martín on 24/4/21. // import SwiftUI struct BlurBackground: UIViewRepresentable { var style: UIBlurEffect.Style func makeUIView(context: Context) -> UIVisualEffectView { return UIVisualEffectView(effect: UIBlurEffect(style: style)) } func updateUIView(_ uiView: UIVisualEffectView, context: Context) { uiView.effect = UIBlurEffect(style: style) } }