widget.List with variable-sized canvas objects #4777
-
I'm developing a chat app, where I anticipate some threads will have tens of thousands (or more) of messages. These messages are displayed via a custom I'm currently putting these message threads in However, per the documentation:
What are my options here? Is there a path to supporting variable sized canvas objects in a |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
We recently added |
Beta Was this translation helpful? Give feedback.
-
Thanks, that does appear to do what I need, however I still have a few things to figure out. Also here's a quick PR for removing that line in the documentation, if you'd like to make that change. It looks like list items are indexed based on This is fine for my uses I think, all of the items I want to put into a list have a UUID, so I'd have to have some sort of additional data structure to track which |
Beta Was this translation helpful? Give feedback.
We recently added
List.SetItemHeight
which is probably what you are looking for.