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