반응형
Hacking with Swift 사이트의 강좌 번역본입니다.
[원문 : https://www.hackingwithswift.com/quick-start/swiftui/how-to-display-solid-shapes]
How to display solid shapes
앱에서 간단한 도형을 원하는 경우에, 직접 만들수 있고 필요에 따라 색상과 위치를 지정할 수 있습니다.
예를 들어, 200x200 빨간색 사각형을 원하는 경우에, 다음과 같이 사용합니다.
Rectangle()
.fill(Color.red)
.frame(width: 200, height: 200)
간단하게, 50x50 파란색 원을 원하는 경우 다음을 사용합니다.
Circle()
.fill(Color.blue)
.frame(width: 50, height: 50)
반응형
'SwiftUI > Text and images' 카테고리의 다른 글
How to use images and other views as a backgrounds (0) | 2019.11.14 |
---|---|
How to render a gradient (0) | 2019.11.14 |
How to tile an image (0) | 2019.11.14 |
How to adjust the way an image is fitted to its space (0) | 2019.11.14 |
How to draw images using Image views (0) | 2019.11.14 |
How to add spacing between letters in text (0) | 2019.11.14 |
How to format text inside text views (0) | 2019.11.14 |
How to style text views with fonts, colors, line spacing, and more (0) | 2019.11.14 |