Why does CollectionView/ListView scrolling slow after navigating to a page?

Platform: .NET MAUI| Category: Performance

Slow scrolling usually means each row is expensive to measure or render. Make templates lighter, prefer fixed item sizes or set ItemSizingStrategy=”MeasureFirstItem” so items are not measured repeatedly, enable recycling by using CollectionView, and downsample or cache images and heavy controls so the UI can reuse views smoothly.

Share with

Related FAQs

Couldn't find the FAQs you're looking for?

Please submit your question and answer.