I have a LazyRow in my Jetpack Compose project that displays only one single item fully visible at a time, with the previous and next items partially visible. Currently, when the user scrolls, it jumps quickly between items. However, I want the scrolling behavior to be smoother, with the scroll snapping to each item one at a time. How can I achieve this? I know it is possible with HorizontalPager, but I want answer with LazyRow
↧