Set item group list colors

This commit is contained in:
Gabriel Tofvesson 2024-10-12 23:38:36 +02:00
parent 97b29a30a5
commit c51a46135a

View File

@ -478,22 +478,23 @@ local PAGES = {
} }
for i=1,groupEntryListBudget do for i=1,groupEntryListBudget do
local bgColor = (i % 2 == 0) and colors.gray or colors.black
table.insert( table.insert(
entries, entries,
Prop.attach( Prop.attach(
List:new{ List:new{
id = tostring(i), id = tostring(i),
bgColor = (i % 2 == 0) and colors.gray or colors.black, bgColor = bgColor,
[Orientation:getId()] = Orientation.HORIZONTAL, [Orientation:getId()] = Orientation.HORIZONTAL,
[Children:getId()] = { [Children:getId()] = {
Padding:new{ Padding:new{
id = GroupEntryID.PADDING, id = GroupEntryID.PADDING,
bgColor = (i % 2 == 0) and colors.gray or colors.black, bgColor = bgColor,
element = Text:new{ id = GroupEntryID.NAME } element = Text:new{ id = GroupEntryID.NAME, bgColor = bgColor }
}, },
Text:new{ Text:new{
id = GroupEntryID.COUNT, id = GroupEntryID.COUNT,
bgColor = (i % 2 == 0) and colors.gray or colors.black bgColor = bgColor
} }
} }
}, },