Flavio Wuenscheantelo.live·Nov 26, 2023Pagination with React QueryIf you prefer the video format, I've also published a YouTube video where I implement pagination using React Query with a Ruby on Rails back-end. To save you time, the React Query part starts on minute 4. Requirements I'm assuming you already have a...Discussreact-query
Feranmi Emmanuel olaitanferanmi.hashnode.dev·Nov 14, 2023Pagination vs Infinite Scrolling: Choosing the Right User ExperienceIn the ever-evolving world of web development, the method by which content is presented and navigated plays an important role. When it comes to displaying lists of items, such as articles, products, or images, two popular techniques used by developer...DiscussWeb Development
Z Seasonssseasonnn.hashnode.dev·Nov 3, 2023How to use Yasha-Compose to render a Compose LazyList with pagination?Yasha was originally a framework for Android RecyclerView. It avoids using the complicated original Adapter API by providing simple and easy-to-use DSL syntax, and integrates the DataSource with paging function provided by Sange to achieve the functi...DiscussAndroid
Ujjwal Shresthaujjwalshres.hashnode.dev·Oct 18, 2023Isotope (filter) and Pagination using Php and JavascriptI wanted to implement Isoptope and Pagination in one of my websites. The idea was to display all my categories for filter options and then while clicking on those options they would dynamically filter the category items below. Here's a diagram to vis...DiscussIsotope
Fahmi Lukistriyaflukis.hashnode.dev·Oct 14, 2023Thinking About PaginationManaging and accessing large amounts of information can be burdensome. This is where the concept of pagination comes to your rescue. Have you ever heard of pagination? If not, you're likely already acquainted with it through everyday experiences like...Discuss·41 readsDatabases
Abu Yousufayousuf.hashnode.dev·Oct 11, 2023Handling Loading states of Android Paging 3Previously I wrote on "Paging 3 on Android" and "Testing Android PagingSource". If you have missed those, please check it out first. In this article, I will write about the loading states of the paging library. Paging library tracks data request stat...Discuss·32 readsAndroid
Kesavaraja Krishnankesavaraja.hashnode.dev·Oct 6, 2023React pagination componentpagination-with-count pagination-with-count is a simple and lightweight npm package that allows you to create pagination with total count and page size. It is useful for displaying large data sets in a user-friendly way. Installation To install pagin...DiscussReact
Hosea Tonzai Favourhoseatonzaifavour.hashnode.dev·Sep 27, 2023Pagination Perfected: Hypermedia and Deletion-resilience for Data EfficiencyIntroduction APIs (Application Programming Interfaces) are not designed for user interface (UI) or user experience (UX). This is obviously because API is a backend architecture. For this reason, even paginated APIs have limitations when it comes to a...Discuss·2 likes·39 readsAPIs
Abu Yousufayousuf.hashnode.dev·Sep 22, 2023Testing Android PagingSourceIn the previous article, I wrote about paging implementation. If you didn't check that you can check it. In this article, I will write about how to test PagingSource. Why testing Testing is very important in development. Test code makes your code bas...Discuss·3 likes·721 readsAndroid
Mfon Ekweremurphydhee.hashnode.dev·Sep 22, 2023Implementing Pagination and Infinite Scrolling with SWR in Your Web ApplicationIn today's digital world, web applications especially dashboards often deal with massive datasets. With the constant competitive ecosystem to offer a seamless experience users expect to go through these datasets without overwhelming load times. Two c...DiscussPagination