2,227 questions
0
votes
1
answer
65
views
infinite_scroll_pagination: refresh() doesn’t call fetchPage when filters update
I’m using the infinite_scroll_pagination package in Flutter and I’m facing an issue with PagingController.refresh().
I expect that when the user changes a filter, the list should reset and fetchPage ...
2
votes
1
answer
325
views
How to keep scroll position stable when loading messages on top?
I’m building a chat UI in Next.js (App Router) and struggling with maintaining the scroll position when fetching older messages at the top.
I’m using:
@tanstack/react-virtual for virtualization
...
0
votes
0
answers
103
views
How to implement a memory-efficient infinite scroll with API pagination in Flutter using GetX?
I’m building a Flutter application where I need to fetch data from a paginated REST API and display it in a ListView.builder with infinite scrolling.
I’m using GetX for state management and controller ...
0
votes
1
answer
136
views
fetchNextPage is triggered immediately on widget build instead of on scroll when using infinite_scroll_pagination with BLoC
Description:
I'm using the infinite_scroll_pagination: ^5.1.0 package in combination with BLoC to implement infinite scrolling in my Flutter app. However, I’m encountering unexpected behavior related ...
0
votes
0
answers
44
views
FlatList inside ListHeaderComponent — onEndReached not firing (infinite scroll issue)
I'm trying to implement infinite scroll in a FlatList (let’s call it NestedList) that is rendered as the ListHeaderComponent of a parent FlatList (MainList) in React Native.
⚙️ What I'm trying to do:
...
1
vote
0
answers
41
views
Getting back same point after link at infinite scrolling?
I’m a Vue developer and I use @tanstack/vue-query to fetch data. I have a page with cards wrapped in router-link and infinite scrolling.
The problem is when I scroll many times, go to a card (navigate ...
1
vote
1
answer
2k
views
How to create infinite scrolling carousel in React with Framer Motion?
I'm trying to create an infinite scrolling horizontal carousel of icons using React and Framer Motion. The animation works, but I'm encountering issues with visible empty space at the end of the ...
0
votes
0
answers
106
views
is there any method for managing memory usage in an infinite scrolling scraping?
I'm writing a Python Selenium scraper for a web page that uses infinite scrolling to load content dynamically. Over time, as more posts are loaded, the JavaScript heap memory usage in ChromeDriver ...
0
votes
0
answers
149
views
Implement lazy-loading using client-side rendering in AgGrid
I am unable to manually implement lazy-loading in the grid using client-side rendering. The reason for not using row model 'infinite' or 'server-side' is that we do not want to make changes in the ...
0
votes
0
answers
115
views
How to implement infinite scroll for MUI X Data Grid with large datasets in an object (load 10 records at a time for each list)?
Hi Stack Overflow community,
I am working with MUI X Data Grid Premium and I have an object with multiple keys (e.g., a, b, c), where each key holds an array of 1000 records. I want to implement ...
0
votes
0
answers
133
views
How can I create a horizontal two-directional infinite scroll gallery with manual scrolling? (svelte)
I'm trying to build a horizontal gallery of images, that the user can manually scroll in both directions, and will show the same images over and over infinitely.
I'm using Svelte as my frontend ...
0
votes
1
answer
77
views
Create social media style scroll on long Quarto website page
I have a Quarto website with a long page requiring a lot of scrolling. Websites like social media feeds or news feeds often have a "click to read more" button that the user runs into after ...
0
votes
1
answer
2k
views
How to use Lazy scroll for big data in Antd Table
I’m working on a project where I need to implement infinite scrolling in an Ant Design Table component for displaying large datasets. I’m fetching the data from a Laravel backend, and I want to ...
0
votes
1
answer
260
views
How to make infinite behavior scrolling without jumping unexpectedly
I'm working on implementing an infinite scrolling feature for a list of images, but I'm encountering an issue where the scrolling behavior is not smooth—it keeps jumping unexpectedly. This disrupts ...
0
votes
0
answers
61
views
IntersectionObserver rootMargin is ignored on mobile device
I'm using the IntersectionObserver API to load additional content when the page scrolls close to 1000px from the bottom. It works fine on desktop, but on mobile screens, the content only loads when it ...