Hello All,
I am working on a new app and I need two pickerwheels of custom width. I know the docs they dont support scaling, but come on, there has to be reasonable way to resize the width of these things. I have included a screenshot of my issue. I gave the frame of the pickerwheel a custom width but I cant place it over the column…
local columnData =
{
--prefix column
{
align = “right”,
labels = prefixes,
width = 45
}
}
local prefixPickerWheel = widget.newPickerWheel{
left = 50,
top = 30,
overlayFrameWidth = 75,
backgroundWidth = 75,
width = 75,
fontSize = 24,
columns = columnData
}
I can’t believe such a simple control is driving me this nuts, I am very close to writing it native iOS
Joseph