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
- 리펙터링
- collectionview
- uitableview
- 리펙토링
- Observable
- 클린 코드
- Clean Code
- RxCocoa
- Protocol
- uiscrollview
- ribs
- rxswift
- UICollectionView
- map
- ios
- combine
- swiftUI
- Xcode
- 애니메이션
- 스위프트
- clean architecture
- MVVM
- 리팩토링
- swift documentation
- Refactoring
- Human interface guide
- SWIFT
- UITextView
- tableView
- HIG
Archives
- Today
- Total
목록onTapGesture (1)
김종권의 iOS 앱 개발 알아가기
[iOS - SwiftUI] 튜토리얼 - 7. 애니메이션 (Animation, spring, speed, delay, onTapGesture)
애니메이션에 사용할 모양 정의 SwiftUI에는 대표적으로 4가지의 모양을 쉽게 사용이 가능 Capsule() Circle() Rectangle() RoundedRectangle(cornerSize:) var body: some View { Capsule() .fill(color) .frame(height: 70) Circle() .fill(.red) .frame(width: 100, height: 100) Rectangle() .fill(.green) .frame(width: 100, height: 100) RoundedRectangle(cornerSize: .init(width: 12, height: 12)) .fill(.blue) .frame(width: 100, height: 100) } 이 중에..
iOS 튜토리얼 (SwiftUI)
2022. 7. 9. 23:27