문제
Color 로 덮여있는 화면을 탭하면 Lottie 뷰가 아래에서 나타나고,
Lottie 뷰를 다시 탭하면 아래로 사라지도록 했다.
뷰가 나타나는 건 잘되는데, 사라질 때 왜 애니메이션이 안먹을까?
원인 및 해결
ZStack {
Color.green.ignoresSafeArea()
if isAnimating {
CustomLottieView()
.transition(.move(edge: .bottom))
}
}
// @State isAnimating, onTapGesture 는 생략
위 코드처럼 구성이 되어있는데 .ignoresSafeArea() 를 풀어보면
removal transition 시, CustomLottieView 의 ZIndex 가 0으로 변경되면서 Color 보다 아래로 이동하여
애니메이션이 적용 안된 것 처럼 보이는 것이었다.
따라서 해결하려면 CustomLottieView 의 ZIndex 를 명시적으로 1로 설정하거나, Color 의 ZIndex 를 -1 로 설정하면 해결할 수 있다.
코드 및 스크린샷
struct ContentView: View {
@State var isAnimating = false
var body: some View {
ZStack {
Color.darkGreen
.ignoresSafeArea()
//.zIndex(-1) <- 이렇게 다셔도 됩니다.
.onTapGesture {
withAnimation(.easeInOut) {
isAnimating = true
}
}
if isAnimating {
CustomLottieView()
.zIndex(1) // <- 여기에 달거나
.transition(.move(edge: .bottom))
.onTapGesture {
withAnimation(.easeInOut) {
isAnimating = false
}
}
}
}
}
}
'iOS' 카테고리의 다른 글
UITableView 로 가사 기능(트래킹, 하이라이팅, 탐색) 개발 기록 (0) | 2023.04.21 |
---|---|
Tuist Project 'Could not build Objective-C module' 오류 해결법 (0) | 2023.01.12 |
CocoaPods pod install 시 minimum deployment target 경고가 뜰 때 (0) | 2022.11.07 |
앱스토어 첫 심사와 리젝 대응 : Guideline 2.1 (0) | 2022.10.24 |
협업 시 팀원과 Provisioning Profile 및 Certificate 공유하기 (9) | 2022.10.22 |