GridBuilder
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 GridBuilder.
Example
...
local Items = {"First item", "Second item", "Third item"}
...
e.GridBuilder(#Items, function(index)
return e.TextLabel(Items[index])
end)Last updated