Skip to main content

スワイプの検知

SwipeGesture というのは無い

swift
   .gesture(
DragGesture()
.onEnded { gesture in
if gesture.translation.width < 0 {
// 左にスワイプしたときの動作
} else {
// 右にスワイプしたときの動作
}
}
)