I have a circle which has an offset. The circle appears with a scale animation when I press a button. The problem is that the animation does not start at the offset position of the circle, it starts at it's original position. How do i get the animation to start at the offset position of the circle.
Circle()
.frame(width: 64, height: 64)
.foregroundColor(.red)
.transition(.scale)
.offset(x: -69, y: 0)

