반응형
Hacking with Swift 사이트의 강좌 번역본입니다.
[원문 : https://www.hackingwithswift.com/quick-start/swiftui/how-to-create-asymmetric-transitions]
How to create asymmetric transitions
SwiftUI는 뷰를 추가할때 하나의 전환을 지정하고, 제거할때 또 다른 것을 지정하며, 모두 asymmetric() 전환 타입을 사용해서 완료되었습니다.
예를들어,비대칭 전환을 사용해서 텍스트 뷰를 만들 수 있으므로, 다음과 같이 추가할때 앞쪽 모서리로 이동하고 제거될때 하단 모서리로 이동합니다.
Text("Details go here.")
.transition(.asymmetric(insertion: .move(edge: .leading), removal: .move(edge: .bottom)))
반응형
'SwiftUI > Animation' 카테고리의 다른 글
How to create a custom transition (0) | 2019.11.29 |
---|---|
How to combine transitions (0) | 2019.11.29 |
How to add and remove views with a transition (0) | 2019.11.29 |
How to apply multiple animations to a view (0) | 2019.11.29 |
How to start an animation immediately after a view appears (0) | 2019.11.29 |
How to delay an animation (0) | 2019.11.29 |
How to create an explicit animation (0) | 2019.11.28 |
How to animate changes in binding values (0) | 2019.11.28 |