Description
This layout adjusts a content offset if the collection view is updated. You can insert, delete or reload items and StableCollectionViewLayout will take care of the content offset.
StableCollectionViewLayout alternatives and similar libraries
Based on the "Collection View" category.
Alternatively, view StableCollectionViewLayout alternatives based on common mentions on social networks and blogs.
-
Carbon
🚴 A declarative library for building component-based user interfaces in UITableView and UICollectionView. -
MSPeekCollectionViewDelegateImplementation
A custom paging behavior that peeks the previous and next items in a collection view -
ThunderCollection
A wrapper around UICollectionViewController enabling a declarative API around it's delegate methods using protocols.
CodeRabbit: AI Code Reviews for Developers

Do you think we are missing an alternative of StableCollectionViewLayout or a related project?
README
StableCollectionViewLayout
This layout adjusts a content offset if the collection view is updated. You can insert, delete or reload items and StableCollectionViewLayout
will take care of the content offset.
Like this
Demo
Usage
You should just create and pass StableCollectionViewFlowLayout
to UICollectionView
init
import StableCollectionViewLayout
UICollectionView(frame: .zero, collectionViewLayout: StableCollectionViewFlowLayout())
Also, you can create the own subclass of StableCollectionViewLayout
and use it.
Installation
CocoaPods
The preferred installation method is with CocoaPods. Add the following to your Podfile
:
pod 'StableCollectionViewLayout', '~> 1.0.0'
Carthage
For Carthage, add the following to your Cartfile
:
github "aimalygin/StableCollectionViewLayout" ~> 1.0.0
Swift Package Manager
To integrate using Xcode:
File -> Swift Packages -> Add Package Dependency
Enter package URL: https://github.com/aimalygin/StableCollectionViewLayout, and select the latest release.