AnupKumarPanwar / swipe_cards

Tinder like swipe cards for flutter.
https://pub.dev/packages/swipe_cards
BSD 3-Clause "New" or "Revised" License
52 stars 47 forks source link

Disable swipe up and down #1

Open subhendukundu opened 3 years ago

subhendukundu commented 3 years ago

An ability to configure swipes directions would be really great.

final allowedActions = [
    SwipeDirection.right,
    SwipeDirection.left,
];

Something like this or

final notAllowedActions = [
    SwipeDirection.up,
    SwipeDirection.down,
];