roubachof / Sharpnado.CollectionView

A performant list view supporting: grid, horizontal and vertical layout, drag and drop, and reveal animations.
The Unlicense
244 stars 30 forks source link

ItemSpacing on CollectionView fix #78

Closed ems107 closed 1 year ago

ems107 commented 1 year ago

I don't know the reason for this constant that adds a margin between each item. Why not leave it at 0? As it is right now, if we set ItemSpacing to 0 there is still a space generated by this constant, we need to set ItemSpacing = -2 (and change the code a bit to allow negative numbers) so that there is no spacing between items.

RecyclerViewItemVerticalMarginDp = 2 ItemSpacing = 0 image

RecyclerViewItemVerticalMarginDp = 0 ItemSpacing = 0 image

SylvainMoingeon commented 1 year ago

For reference, related issue : #74

roubachof commented 1 year ago

will be integrated in next version