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
- map
- combine
- UITextView
- UICollectionView
- Xcode
- swiftUI
- Protocol
- Clean Code
- clean architecture
- uiscrollview
- Observable
- uitableview
- 애니메이션
- HIG
- Refactoring
- collectionview
- ios
- 리펙터링
- 클린 코드
- tableView
- 스위프트
- SWIFT
- Human interface guide
- 리펙토링
- MVVM
- swift documentation
- rxswift
- 리팩토링
- RxCocoa
- ribs
Archives
- Today
- Total
목록PlainButtonStyle() (1)
김종권의 iOS 앱 개발 알아가기
[iOS - SwiftUI] NavgationLink에서 Disclosure Indicator 제거 방법, List에서 padding 제거 방법
가장 일반적인 List 형태 List 하위에 NavigationLink가 있는 형태 import SwiftUI struct ContentView: View { var items = (0...100).map(String.init).map(SomeModel.init) var body: some View { NavigationView { List(items){ item in NavigationLink( destination: { Text(item.val) }, label: { Text(item.val) } ) } .navigationTitle("List 예제") } } } struct SomeModel: Identifiable { let val: String var id: String { val } } 오른쪽..
iOS 응용 (SwiftUI)
2022. 9. 26. 22:15