Barry Rowe
Barry Rowe
@juliagarrigos @viroth-ty I am considering forking and publishing to maven central, but haven't had the time to check licensing and set it up. If you need to get off of...
@devganiyahitesh1 @kdblue From my limited testing, it looks like you can use a `ListAdapter` and only need to implement `DiffUtil.ItemCallback`. It will do the work that is shown in @kdblue...
This will be expensive to destroy and inflate fully new layouts for every item, but can be done. The card stack is a recyclerview, and you can extend [`ListAdapter` ](https://developer.android.com/reference/androidx/recyclerview/widget/ListAdapter)...
This could use some documentation expansion if you'd like to submit a PR to update it. You can setup the swipeable directions on the `CardStackLayoutManager`: ``` cardStackView.layoutManager = CardStackLayoutManager(requireContext(), this).apply...
Hmm this is working for me. It doesn't limit all motion in the other directions, but will limit which directions result in the card actually swiping away. Are you looking...
I'm not sure with the current API. I think the library would have to be extended to include finer grained options like: canScrollHorizontalLeft canScrollHorizontalRight canScrollVerticalTop canScrollVerticalBottom
That's a much bigger undertaking, and will likely require overriding `onInterceptTouchEvent` at some point in your view heirarchy. I don't think there's anything on the CardStackView that is intended to...
There is a Sample project in this repository. If you are looking for `CardStackAdapter` and not finding it (like myself when I first tried to implement this) you might be...
Ok thanks. I think a note in the docs would be good, as just reading the type name, I wouldn't have expected the behavior that is intended. I wonder if...
I was looking through this, and while I submitted a pull request to add documentation around on the Engine.getEntities method, it seems like in the long run implementing snapshots seems...