This is a brief introduction to the tools needed to maintain a personal fork of ZMK (or QMK or really whatever). It covers:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ScrollableListItemMixin = {}; | |
function ScrollableListItemMixin:Init(elementData) | |
self.Background:SetColorTexture(elementData.color:GetRGBA()); | |
self.Text:SetText(elementData.text); | |
end | |
ScrollableListMixin = {}; | |
function ScrollableListMixin:OnLoad() |