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
- Xcode
- Observable
- SWIFT
- Human interface guide
- Refactoring
- swift documentation
- 스위프트
- 클린 코드
- swiftUI
- ribs
- clean architecture
- 애니메이션
- 리펙토링
- UITextView
- uitableview
- 리펙터링
- HIG
- combine
- rxswift
- uiscrollview
- map
- tableView
- UICollectionView
- 리팩토링
- RxCocoa
- Clean Code
- Protocol
- collectionview
- ios
- MVVM
Archives
- Today
- Total
목록Groupbox (1)
김종권의 iOS 앱 개발 알아가기
[iOS - SwiftUI] Group, GroupBox, Section 사용 방법
목차) SwiftUI의 기본 - 목차 링크 Group Group은 여러개의 View 들에 동일한 속성을 부여하고 싶을때 사용 ex) 3개의 Text에 동일한 .font를 적용하고 싶은 경우, 3개의 Text를 Group안에 넣어서 관리 struct ContentView: View { var body: some View { Group { Text("SwiftUI") Text("Combine") Text("Swift System") } .font(.headline) Text("Some Text") } } GroupBox GroupBox는 view 연관있는 내용들을 하나로 묶은 UI GroupBox { Text("Content") } GroupBox("title") { Text("Content") } Grou..
iOS 기본 (SwiftUI)
2022. 8. 28. 23:26