I have setup a Picker widget that has three columns. Here is the table that defines the Picker:
local columnData =
{
{
align = “center”,
width = 60,
startIndex = 12,
labels = hours,
},
{
align = “center”,
width = 60,
startIndex = 1,
labels = minutes,
},
{
align = “center”,
width = 60,
startIndex = 1,
labels = { “AM”, “PM” },
}
}
The width value is applied to the first 2 columns, but the 3rd column extends to the edge of the screen. How do you set the overall width of the picker or have it only be as wide as the sum of the width of it’s columns (60+60+60), plus edge visuals?
Thanks,
Todd