Skip to content

Instantly share code, notes, and snippets.

View Sharparam's full-sized avatar
🏭
The factory must grow!

Adam Hellberg Sharparam

🏭
The factory must grow!
View GitHub Profile
@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