Hi
I noticed that custom row line color (set in insertRow function) reverts to default color as soon as I move row outside the screen and then move it back on the screen.
The easiest way to describe the issue is to insert lineColor = { 255, 0, 0, 255 } at the line 140 in “ListView1” Corona demo. So that part of the code should look like:
[lua]-- insert rows into list (tableView widget)
for i = 1, 20 do
list:insertRow{
height = 72,
lineColor = { 255, 0, 0, 255 }
}
end[/lua]
If you move rows up/down you will see that row lines change from red to light grey.
It looks like bug.
Any fix or workaround?