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
- RaceCondition
- 청년취업사관학교
- leetcode
- IOS
- 명품cppProgramming c++
- DependencyInjection
- 프로그래머스
- 코테
- MainScheduler.Instance
- Realm
- 오픈채팅방
- SwiftUI
- DispatchQueue
- combine
- gitflow
- 등굣길
- rxswift
- MainScheduler.asyncInstance
- MethodSwilzzling
- SRP
- GCD
- swift
- CoreBluetooth
- cleanarchitecture
- SeSAC
- DynamicMemberLookup
- GIT
- MainScheduler
- data_structure
- DiffableDataSource
Archives
- Today
- Total
목록SwiftUI (1)
Do.
SwiftUI - 애니메이션 사라질 때 동작하지 않는 경우(SwiftUI Disappear transition not animated)
문제 SwiftUI는 withAnimation으로 간단하게 애니메이션을 할 수 있는데, 종종 사라질 때 이 애니메이션이 작용하지 않는 듯한 모습을 보입니다. Tap을 하면 Circle은 자연스럽게 opacity Transition이 동작하는데, 글자는 나타날 때는 애니메이션이 잘 되는거 같은데, 사라질 때는 애니메이션이 동작하지 않는 것 처럼 뿅하고 사라집니다. 더보기 struct ContentView: View { @State var state: Bool = false var body: some View { VStack { Button { withAnimation { state.toggle() } } label: { Text("Tap \(state ? "On" : "Off")") } ZStack { C..
iOS
2022. 5. 10. 23:29