Set item group list colors
This commit is contained in:
parent
97b29a30a5
commit
c51a46135a
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user