Meet these classes
- LinearSnapHelper class
- PagerSnapHelper class
LinearSnapHelper class
It is used for similar items and snaps the center of the target child view.
Example:
val snapHelper = LinearSnapHelper()
snapHelper.attachToRecyclervierw(rvView)
PagerSnapHelper class
It is used for full-screen items and behaves the same as viewpager.
Example:
val snapHelper= PagerSnapHelper()
snapHelper.attachToRecyclervierw(rvView)
Thank you :)