Skip to content

Add height option to SnapLikeCellSize

Latest

Choose a tag to compare

@kboy-silvergym kboy-silvergym released this 10 Dec 08:07
· 4 commits to master since this release
5dd6342

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
)