ListBuilder
If your need to display a grid of a large or infinite number of items (a list of items fetched from API, for instance) then you should use ListBuilder.
...
local Items = {"First item", "Second item", "Third item"}
...
e.ListBuilder(#Items, function(index)
return e.TextLabel(Items[index])
end)Last updated