AligningRecyclerView
AligningRecyclerView copied to clipboard
Fast fling reaching the end of list breaks synchronisation
Hey, first of all thanks for the library! It works quite well. I am having just one particular issue and wanted to know your opinion about it: I am testing it with a very large set of views (as that is my usecase). I have two recyclerviews aligned horizontally. If I swipe very fast on one of the recycler views and I reach the end, then for some reason the other recycler view won't catch up. As far as I can tell this only happens if you reach one of the edges of the recycler view.
So I think this could be actually not difficult to solve, as what is needed to be done is: if one of the recycler views reached one edge, then set the other one to that set as well. (This is always assuming they are the same size, which makes total sense in my usecase at least).
What do you think about it? Do you have any recommendation on the implementation of it?
Thanks