일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- CS
- withAnimation
- UIKit
- 달력
- realitykit
- WWDC
- ios
- Animation
- stateobject
- firebase
- SwiftUI
- Performance
- auth
- swift
- arkit
- iphone
- 네트워크
- state
- RxSwift
- gesture
- 데이터최적화
- GCD
- fullscreencover
- environmentobjet
- combine
- ar
- dataflow
- Network
- Concurrency
- authentication
Archives
- Today
- Total
목록dispatchqueue (1)
XLOG
[SwiftUI] Camera Shutter Button Animation
저번 Animation 공부한 내용을 바탕으로 Camera Shutter 를 구현해 보았다. 우선 카메라 셔터 부터 시작을 해보자. struct ContentView: View { @State var buttonTapped: Bool = false var body: some View { ZStack { Color.black ZStack { // 외각 테두리 Circle() .stroke(lineWidth: 4) .foregroundColor(.white) // 내부 원 Circle() .foregroundColor(buttonColor) .frame(width: buttonTapped ? 56 : 60, height: buttonTapped ? 56 : 60) } .frame(width: 72, heig..
Swift/SwiftUI
2023. 9. 18. 22:29