You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 22, 2019. It is now read-only.
How can you return the last swiped card back on top of the stack? And how do you activate endless looping the views. Will those features be available in a future release?
The text was updated successfully, but these errors were encountered:
You can use resetStack() method to reset the stack once end is reached.
`swipeStack.setListener(new SwipeStack.SwipeStackListener() { @OverRide
public void onViewSwipedToLeft(int position) {
}
@Override
public void onViewSwipedToRight(int position) {
}
@Override
public void onStackEmpty() {
swipeStack.resetStack();
}
});`
How can you return the last swiped card back on top of the stack? And how do you activate endless looping the views. Will those features be available in a future release?
The text was updated successfully, but these errors were encountered: