You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem is that with large number of items (500+) list become unresponsive. Container scroll itself works fine, but if I want to use cursor (selecting item, changing its style and manually scroll to widget location) it is slow.
I have tried both ScrollableContainer and ListView (former works worse). All obvious (for me) optimization are made:
Widgets mounted/installed together.
There are no widgets re-composition during scroll.
Here is example app using scroll and list showing what app is doing:
So question is whether it is expected limitation for such large panels and I may not look further (and implement pagination for example) or I'm doing something wrong?
The text was updated successfully, but these errors were encountered:
Discussed in #5160
Originally posted by anlar October 23, 2024
Hello,
I'm working on application that has vertical list of items which should be scrollable by cursor. Each item is a widget itself and contains about 10 sub-widgets. Here is a screenshot for better understanding: https://github.com/anlar/tewi/blob/master/docs/images/tewi-screenshot-1.png .
Problem is that with large number of items (500+) list become unresponsive. Container scroll itself works fine, but if I want to use cursor (selecting item, changing its style and manually scroll to widget location) it is slow.
I have tried both ScrollableContainer and ListView (former works worse). All obvious (for me) optimization are made:
Here is example app using scroll and list showing what app is doing:
So question is whether it is expected limitation for such large panels and I may not look further (and implement pagination for example) or I'm doing something wrong?
The text was updated successfully, but these errors were encountered: