Skip to content

Instantly share code, notes, and snippets.

@Meorawr
Meorawr / HybridScrollDemo.lua
Last active October 28, 2023 12:17
HybridScrollFrame Demo
local function CreateDemoModel(numItems)
local listModel = {};
for index = 1, numItems do
table.insert(listModel, {
text = string.format("List Item %1$d", index),
icon = string.format([[Interface\Icons\INV_Sword_%1$d]], 30 + (index % 30)),
});
end