Blank area when scrolling fast
See original GitHub issueCurrent behavior
- Display blank area when scrolling fast.
Expected behavior
- No blank when scrolling fast
To Reproduce
Please try the code
const App: () => Node = () => {
const [list, setList] = useState([])
useEffect(() => {
fetch('https://api.coinpaprika.com/v1/tickers').then(data => {
data.json().then(jsonData => {
setList(jsonData)
})
})
}, [])
return (
<View style={{flex: 1}}>
<FlashList estimatedItemSize={19.4} renderItem={({item, index}) => <Text>{item.name}</Text>} data={list} />
</View>
);
};
Platform:
- iOS
- Android
Environment
1.3.0
Issue Analytics
- State:
- Created a year ago
- Reactions:3
- Comments:9
Top Results From Across the Web
The blank area when user is scrolling quickly in cdk-virtual-scroll
cdk-virtual-scroll-viewport, is showing white blank space when scroll quickly. If we use minBufferPx and maxBufferPx to reduce the blank ...
Read more >Blank area when scrolling fast on thousand items - Ionic Angular
When I'm testing on real device (smartphone android) and I scroll quite fast (down or up) the list area become BLANK and then...
Read more >How to prevent white space "bounce" after scrolling to the top ...
This bounce can look very ugly if your header and footer has a background colour. How do i get rid of this effect?...
Read more >Sometimes the screen goes blank when scrolling fast through ...
If I had more than one tab open, toggling between tabs would then redraw the page. I tried this with autoblog.com and flyozone.com/paragliders/en/products/...
Read more >Optimizing Flatlist Configuration - React Native
Blank areas: When VirtualizedList can't render your items fast enough, ... less visual blank areas when scrolling (increases the fill rate).
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@naqvitalha Yes,
Actually, it will be more visible on low end device
@phantrungviet98 Yeah, it’s important to optimize the component. There are still compute limitations, if the component is too slow to update then you can have blank space. In your new example, most likely the SVG is too slow to update. Check your JS FPS.