間違い

withoutAnimation(_:) 修飾子を適用して、回転がアニメーション化されないようにシールドする。

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

.imageScale(.large)

.withoutAnimation {

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

}

.scaleEffect(showDetail ? 1.5 : 1)

.padding()

.animation(.spring())


withoutAnimation(_:) 修飾子はありません。あなたは withAnimation(_:_:) グローバル関数について考えているかもしれません。