Hi guys;
I’ve got yet another question. I’m trying to implement the pickerwheel widget for the first time but it’s not really working out. I’d like it to be just white, no separators, no borders, no nothing… But I can’t seem to figure it out. I first tried doing this:
pickerWheel.dateWidget = widget.newPickerWheel { top = display.contentHeight - 222, columns = pickerWheel.columnData, }
That gave me a clean white result in the emulator but an ugly theme on real devices. After that I tried using an image sheet, which didn’t work out either. The sheet is just a white rectangle with dimensions: 320x222, I will attach it in this post. Here is the code:
pickerWheel.dateWidget = widget.newPickerWheel { top = display.contentHeight - 222, columns = pickerWheel.columnData, sheet = pickerWheelSheet, overlayFrame = 1, overlayFrameWidth = actualW, overlayFrameHeight = 222, backgroundFrame = 1, backgroundFrameWidth = 320, backgroundFrameHeight = 222, separatorFrame = 1, separatorFrameWidth = 0, separatorFrameHeight = 0, columnColor = { 1,1,1 }, fontColor = { 0.4, 0.4, 0.4, 0.5 }, fontColorSelected = { 0.2, 0.6, 0.4 } }
Because there is only one frame in the sheet, all frames are set to 1. I’ll also attach a snapshot of the shadow issue. Any ideas on how to fix this? Maybe without using a spirtesheet? A white pickerwheel can’t be that hard to achieve, right?
The screenshot will have a white rect with “CANCEL” and “DONE” in it. that is just something that I’ve put over the pickerwheel and has nothing to do with the options of the pickerwheel 
