Pagination with Paging 3: Modifying Paged Data
<blockquote>
<p>Pagination plays a crucial role in building industrial applications. We don’t want to load large amounts of data in one go, that’s why we read them in certain pages. Through this, we want to provide <strong>infinite scrolling behaviour </strong>to our users without hampering their user experience.</p>
</blockquote>
<p>For Android, Google has provided a very efficient <a href="https://developer.android.com/topic/libraries/architecture/paging/v3-overview" rel="noopener ugc nofollow" target="_blank"><strong>Paging library</strong></a><strong>, </strong>which we can use in our apps by following certain steps. In this article we are going to discuss Paging 3 and how we can modify Paged Data without altering the data source.</p>
<p>Let’s first see how we can implement Paging 3 following MVVM architecture in our apps.</p>
<p><a href="https://proandroiddev.com/pagination-with-paging-3-modifying-paged-data-223f0bea603b"><strong>Read More</strong></a></p>