일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Refactoring
- 애니메이션
- RxCocoa
- uitableview
- map
- 리팩토링
- SWIFT
- Protocol
- Human interface guide
- swift documentation
- clean architecture
- ios
- UITextView
- collectionview
- uiscrollview
- HIG
- UICollectionView
- tableView
- swiftUI
- 리펙터링
- Clean Code
- Xcode
- Observable
- rxswift
- 스위프트
- MVVM
- 클린 코드
- 리펙토링
- combine
- ribs
- Today
- Total
목록GeometryReader (3)
김종권의 iOS 앱 개발 알아가기
목차) SwiftUI의 기본 - 목차 링크 *초록색 뷰를 파란색뷰 오른쪽 하단에 위치시키는 방법? -> 아래에서 알아볼 GeomettryReader를 사용 GeometryReader, GeometryProxy 란? 뷰의 Container라고 생각하면 되고, 인수로 사용할 수 있는 GeometryProxy가 존재 GeometryProxy란 좌표와 사이즈 값을 가지고 있는 역할 즉, 컨테이너뷰에 관련하여 좌표를 구하고 싶을때나 컨테이너뷰의 크기를 알고 싶은 경우, proxy로 사용 struct ContentView: View { var body: some View { VStack { Text("Jake iOS 앱 개발 알아가기") GeometryReader { proxy in } } } } GeometryP..
목차) SwiftUI의 기본 - 목차 링크 Animation SwiftUI에서는 withAnimation을 통하여 쉽게 애니메이션 효과 적용이 가능 버튼을 눌렀을때 widthAnimation()에 애니메이션 타입, duration, 애니메이션 적용할 클로저 블록만 구현하면 완료 애니메이션 적용 방법 애니메이션을 적용하기 전에 필요한 뷰 준비 모두 동일한 width로 시작 GeometryReader를 통해 현재 영역의 width, height값을 사용 struct ContentView : View { private let duration = 3.0 @State var isAnimated = false @State var width1 = 150.0 @State var width2 = 150.0 @State ..
GeometryReader ContainerView이며, 내부에 UIView들의 layout을 쉽게 변경할 수 있는 역할 * GeometryReader를 안쓴 경우) Stack안에 두가지의 뷰가 들어가고, Rectangle이 하단의 모든 자리를 차지하는 형태 struct Example: View { var body: some View { VStack { Text("example GeoMetryReader") Rectangle() .foregroundColor(.green) } } } struct Example_Previews: PreviewProvider { static var previews: some View { Example() } } GeometryReader를 사용한 경우) GeometryRe..