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
I am trying to implement a widget to display an interactive list of items. I though of using Row widgets to layout the internal content, and to capture and respond to events. However, these row widgets will not be added by the user, but rather be generated internally by the List widget. Since my list can be very big, I would like to use virtual scrolling and recycle the rows. Should they be part of the List's state? Should I generate them on the fly when layout is called? What should I do if the user resizes the window and I need to add more rows? Is there an example I can use for inspiration?
The text was updated successfully, but these errors were encountered:
I am trying to implement a widget to display an interactive list of items. I though of using
Row
widgets to layout the internal content, and to capture and respond to events. However, these row widgets will not be added by the user, but rather be generated internally by theList
widget. Since my list can be very big, I would like to use virtual scrolling and recycle the rows. Should they be part of the List's state? Should I generate them on the fly whenlayout
is called? What should I do if the user resizes the window and I need to add more rows? Is there an example I can use for inspiration?The text was updated successfully, but these errors were encountered: