Hi all,
I’m creating a newPickerWheel in Corona 1074 using this code:
[lua]-- Create a new Picker Wheel
local pickerWheel = widget.newPickerWheel
{
top = 210,
font = native.systemFontBold,
columnColor = { 55, 250, 100, 255 },
columns = columnData
}
group:insert( pickerWheel )
[/lua]
I’m assuming that the background color of the column have to change according the columnColor table property.
Unfortunally the column background color does not change and it remain still white!!
I’m missing something? Any ideas?
Thanks in advance
Ale