두 제스처를 동시에 실행하기
- gesture 모디파이어를 두 개 연달아 사용시 기본적으로 먼저 작성한 제스처가 먼저 인식됨.
simultaneously(with:)
.gesture(rotation.gesture.simultaneously(with: magnification.gesture))
var gestures: some Gesture {
SimultaneousGesture(rotation.gesture, magnification.gesture)
}