flutter_swipe_detector 1.0.1 flutter_swipe_detector: ^1.0.1 copied to clipboard
A package to detect your swipe directions and provides you with callbacks to handle them.
Flutter Swipe Detector #
Author: Jop Middelkamp #
A package to detect your swipe directions and provides you with callbacks to handle them.
Usage #
SwipeDetector(
onSwipe: (direction) {
_addSwipe(direction);
},
onSwipeUp: () {
_addSwipe(SwipeDirection.up);
},
onSwipeDown: () {
_addSwipe(SwipeDirection.down);
},
onSwipeLeft: () {
_addSwipe(SwipeDirection.left);
},
onSwipeRight: () {
_addSwipe(SwipeDirection.right);
},
child: const Container(
padding: EdgeInsets.all(16),
child: Text(
'Swipe me!',
style: TextStyle(
fontWeight: FontWeight.bold,
),
),
),
),