Releases: kboy-silvergym/SnapLikeCollectionView
Releases · kboy-silvergym/SnapLikeCollectionView
Add height option to SnapLikeCellSize
Changed property name of SnapLikeCellSize.
normal→normalWidthcenter→centerWidth- add
normalHeightandcenterHeight
Example
let cellSize = SnapLikeCellSize(normalWidth: 100, centerWidth: 160)Or you can add height option like this.
let cellSize = SnapLikeCellSize(
normalWidth: 100,
centerWidth: 160,
normalHeight: 200,
centerHeight: 300
)