All Versions
17
Latest Version
Avg Release Cycle
38 days
Latest Release
1806 days ago

Changelog History
Page 1

  • v3.1.1 Changes

    May 08, 2020
    • โž• Added ability to listen to index change when the paging finishes

      func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) { print(behavior.currentIndex) }

  • v3.1.0 Changes

    May 06, 2020
    • โž• Added SPM Support ! ๐ŸŽ‰
  • v3.0.4 Changes

    February 05, 2020
    • ๐Ÿ›  Fixed issue #55 once and for all ๐Ÿ’ช (Hopefully..)
  • v3.0.3 Changes

    December 16, 2019
    • ๐Ÿ›  Fixed issue #50
    • ๐Ÿ›  Fixed an issue when scrolling backwards on the first item or forwards on the last item.
    • โž• Added some tests around the content length
  • v3.0.2 Changes

    December 13, 2019

    ๐Ÿ›  Fixed an issue when scrolling backwards and stopping before pulling finger.

    Thanks @miklashevsky for helping me track this thing out!

  • v3.0.1 Changes

    December 13, 2019

    โž• Added scrollToItem function on the behavior. You can now do something like:

    behavior.scrollToItem(at: 1, animated: true)
    

    It's recommended to use this function instead of the collection view's scrolling function because we're using a custom collection view layout and the calculation is different

  • v3.0.0 Changes

    December 07, 2019

    ๐Ÿ†• New version is here with less bugs! (Hopefully ๐Ÿ™ )
    The implementation is now using a custom collection view layout which spaces components based on the collection view's frame

    The paging behavior is now in it's separate component so that it would be easier to customize and maintain

    ๐Ÿ†“ The new layout should fix most issues with items clipping but please feel free to raise issues if you're still experiencing them

    ๐Ÿฑ Thank you for your comments and support everyone! โค๏ธ

  • v2.0.0 Changes

    September 05, 2019
    • โšก๏ธ Updated swift to version 5 ๐ŸŽ‰
  • v1.3.0 Changes

    June 05, 2019
    • โž• Added minimumItemsToScroll

    minimumItemsToScroll is the number of items that the user will scroll when the scroll distance is greater than the threshold. This is quite useful when you have multiple cells showing at once and you need to do a paging behavior.

    For example, let's say I'm showing 2 items at the same time, but I still want to have some kind of paging behavior by scrolling to another 2 items without the need to scroll 1 item at a time. This can be achieved by setting the number of items to show to 2 and minimum items to scroll to 2

  • v1.2.2 Changes

    May 30, 2019
    • โž• Added ability to override UICollectionViewDelegate functions