Does Iced support virtualized lists? Like if I want to show a list or a table with a million rows, is there a way to do it with good performance?
yes, you can use the sensor widget in combination with the table widget, for example, and pop items in and out of view in a scrollable
you could also write your custom widget and implement culling yourself. the game_of_life shows one approach, which, while specific to a canvas, can serve as inspiration for other implementations
1 Like