Tag Archives: Paging

Simplifying Endless Scrolling with Paging 3 in Jetpack Compose ๐Ÿš€ | by Mehmet Hasan Akcay | adessoTurkey | Jan, 2025

Simplifying Endless Scrolling with Paging 3 in Jetpack Compose ๐Ÿš€ | by Mehmet Hasan Akcay | adessoTurkey | Jan, 2025

To implement infinite scrolling without using any libraries, I initiated the process by sending a request to the API with the page parameter set to 0. The API returned a list of 20 items, which I displayed in a LazyColumn. Using the LazyColumnโ€™s state object, I tracked the userโ€™s scroll position. Each time the user scrolled to the last item, …

Read More »