felipecsl/QuickReturn

Issue with item selection

Opened this issue · 1 comments

You library works great but with one major problem.

When I try to select an item in the list, it always selects the item next to it, like if I select the first one, it selects the second one and so on.

Can you please provide a solution to this problem?

Thanks in advance.

Just add the column count on the position of the current index. Since I think this library manually adds a header view on your list. So for example on ListView since its expected to contain only 1 column, you just add 1 on the item position and for GridView with multiple columns, add the number of columns on the item position. Hope it helps.