我一直在玩 SwiftUI 及其动画。下面是我在带有 scaleEffect 动画的 navigationView 内的圆圈代码
@State private var isAnimating = false
NavigationView{
VStack{
ZStack{
Circle()
.fill(Color.blue)
.shadow(radius: 15)
.frame(width: 150, height: 150, alignment: .center)
.scaleEffect(isAnimating ? 1.2 : 1)
.onAppear() {
withAnimation(Animation.easeInOut(duration: 1.2).repeatForever()){
self.isAnimating = true
}
}
}
.padding(.top, 140)
Spacer()
}
.edgesIgnoringSafeArea(.all)
}
我的预览显示了预期的动画:
但不知何故,在模拟器上,动画完全不同:
这是来自 SwiftUI 的错误吗?我在这里做错了什么?