반응형
Hacking with Swift 사이트의 강좌 번역본입니다.
[원문 : https://www.hackingwithswift.com/quick-start/swiftui/how-to-blur-a-view]
How to blur a view
blur() modifier는 실시간으로 뷰에 우리가 선택한 만큼 가우시안 블러(Gaussian blur) 를 적용합니다.
예를들어, 다음은 300x300 프로필 사진을 만들고, 20 포인트 Gaussian bluer를 추가합니다.
Image("paul-hudson")
.resizable()
.frame(width: 300, height: 300)
.blur(radius: 20)
텍스트 뷰를 포함한 모든 것에 원하는데로 blur를 적용할 수 있습니다.
Text("Welcome to my SwiftUI app")
.blur(radius: 2)
반응형
'SwiftUI > Transforming views' 카테고리의 다른 글
How to adjust views by tinting, and desaturating, and more (0) | 2019.11.28 |
---|---|
How to blend views together (0) | 2019.11.28 |
How to mask one view with another (0) | 2019.11.27 |
How to adjust the accent color of a view (0) | 2019.11.27 |
How to adjust the opacity of a view (0) | 2019.11.27 |
How to round the corners of a view (0) | 2019.11.27 |
How to scale a view up or down (0) | 2019.11.27 |
How to rotate a view in 3D (0) | 2019.11.27 |