Lazy load

How can I build a window or a list that has 1000 images that are displayed, but I want the images not to be loaded in advance but only when I scroll and approach the area of the images?

Do you know the dimensions ahead of time? You could load Containers into the List and then load batches of images with loadAssets() depending on scroll of the List.

Great! thanks