반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- subject
- vim
- @Binding
- ios14
- RFC1738/1808
- NavigationLink
- @State
- Operators
- typeorm
- @EnvironmentObject
- dismiss
- graphql
- init?
- nonisolated
- @Environment
- IOS
- Operater
- URL(string:)
- Creating Operators
- SWIFT
- SwiftUI
- RxSwift
- operator
- nestjs
- NullObject
- swift6
- Xcode
- RxCocoa
- init
- Bug
Archives
- Today
- Total
Tunko Development Diary
[iOS][SwiftUI] spacing 정리 본문
spacing은 컨테이너에서 적용할 수 있는 속성이다.
컨테이너 내부 뷰간에 간격을 조정 할 수 있다.
struct ContentView: View {
var body: some View {
HStack(spacing: 5) {
VStack(spacing: 30) {
tunkoView(color: Color.red)
tunkoView(color: Color.red)
tunkoView(color: Color.red)
}
VStack(spacing: 30) {
tunkoView(color: Color.red)
tunkoView(color: Color.red)
tunkoView(color: Color.red)
}
VStack(spacing: 30) {
tunkoView(color: Color.red)
tunkoView(color: Color.red)
tunkoView(color: Color.red)
}
}
}
}
반응형
'Development > iOS 개발' 카테고리의 다른 글
[IDE][Xcode][swift] 코드 자동 정리 Swimat 사용하기 (0) | 2021.02.17 |
---|---|
[iOS][SwiftUI] 컨테이너의 자식 뷰 제한과 Group (0) | 2021.02.16 |
[iOS][SwiftUI] padding 정리 (0) | 2021.02.16 |
[iOS][SwiftUI] alignment 정리 (0) | 2021.02.15 |
[iOS][SwiftUI] Spacer 정리 (0) | 2021.02.15 |
Comments