Adding swiped view back to the views stack but at bottom
Opened this issue · 3 comments
I want to achieve something like this:
- User swipes the top most view, either towards left or right
- The swiped view is added to the bottom of view stack
- So say if there were three views then first view is re-visible after third swipe
Is it something which can be achieved out of the box or does it need customization in existing code base? Any code pointers shall be helpful.
Thanks in advance.
I'm also looking to achieve this :/
Tip: if you play around with the sample project and edit the ZLSwipeableView
rewind function so it puts the rewinded view at index 0 (or 1), it attempts to do what we're looking for. But it's very buggy, for unknown reasons (I just played around for a few mins though).
Any progress in your work achieving this @Daemon-Devarshi ? :)
Thanks
Just noted something... What we're looking for is to perform a "topView -> swipe to X direction" and then make that topView become the nextView
(in the data source method). That way, it'll animate going the bottom of the deck. ;) @Daemon-Devarshi
You could append swipeableView.history.last in the swipeableView.didSwipe method