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
- Clean Code
- UITextView
- 리펙토링
- 애니메이션
- UICollectionView
- 리팩토링
- swiftUI
- clean architecture
- ribs
- uitableview
- combine
- MVVM
- Refactoring
- map
- Human interface guide
- swift documentation
- Protocol
- tableView
- collectionview
- 리펙터링
- SWIFT
- Xcode
- 클린 코드
- RxCocoa
- ios
- 스위프트
- Observable
- rxswift
- uiscrollview
- HIG
Archives
- Today
- Total
목록kerning (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swiftUI] Text, kerning, tracking, Localization, ViewModifier, Text ViewModifiers 개념
목차) SwiftUI의 기본 - 목차 링크 Text Text()로 사용 struct ContentView: View { var body: some View { Text("text") } } underline, strikethough, baselineOffset struct ContentView: View { var body: some View { VStack { Text("text1") Text("underline") .underline() Text("strikethrough") .strikethrough() Text("base line ofset(30)") .baselineOffset(30) } } } kerning과 tracking kerning은 문자간의 offset을 조절 tracking은 후행 ..
iOS 기본 (SwiftUI)
2022. 7. 30. 23:57