Skip to content

Releases: kboy-silvergym/SnapLikeCollectionView

Add height option to SnapLikeCellSize

10 Dec 08:07
5dd6342
Compare
Choose a tag to compare

Changed property name of SnapLikeCellSize.

  • normalnormalWidth
  • centercenterWidth
  • add normalHeight and centerHeight

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
)