horizontalSwipeDetector method
Widget
horizontalSwipeDetector({
- required dynamic onSwipe(),
- HitTestBehavior? behavior = HitTestBehavior.translucent,
Implementation
Widget horizontalSwipeDetector({
required Function(DragUpdateDetails) onSwipe,
HitTestBehavior? behavior = HitTestBehavior.translucent,
}) =>
GestureDetector(
behavior: behavior,
onPanUpdate: onSwipe,
child: this,
);