반응형

 

Hacking with Swift 사이트의 강좌 번역본입니다.

 

[원문 : https://www.hackingwithswift.com/quick-start/swiftui/how-to-round-the-corners-of-a-view]

 

How to round the corners of a view

 

모든 SwiftUI 뷰는 cornerRadius() modifier를 사용해서 둥근 모서리를 만들 수 있습니다. 간단한 포인트 값으로 얼마만큼 둥글게 만드는지에 대한 명확한 제어을 합니다.

 

따라서, 다음과 같이 26 포인트 둥근 모서리를 가진 텍스트 뷰를 만들수 있습니다.

Text("Round Me")
    .padding()
    .background(Color.red)
    .cornerRadius(25)

 

반응형

'SwiftUI > Transforming views' 카테고리의 다른 글

How to blur a view  (0) 2019.11.27
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 scale a view up or down  (0) 2019.11.27
How to rotate a view in 3D  (0) 2019.11.27
How to rotate a view  (0) 2019.11.26
How to clip a view so only part is visible  (0) 2019.11.26
Posted by 까칠코더
,