正解

nilanimation(_:) 修飾子に渡す。

Image(systemName: "chevron.right.circle")

.imageScale(.large)

.rotationEffect(.degrees(showDetail ? 90 : 0))

.animation(nil)

.scaleEffect(showDetail ? 1.5 : 1)

.padding()

.animation(.spring())


作成した回転は、rotationEffect(_:) 修飾子を使用してアニメーション化できます。