iOS Swift - Animations
Consider this SwiftUI code:
Circle()
.frame(width: 100, height: 100)
.scaleEffect(isScaled ? 1.5 : 1)
.animation(.spring(), value: isScaled)
.onTapGesture { isScaled.toggle() }
What is the visual effect when the circle is tapped?