Hello,
Is there a way to add a column value 0 to the pickerWheel?
pickerWheel minutes:
for m = 1, 60 do if (m \< 10) then minutes[m] = "0"..m else minutes[m] = m end end
I tried changing the m to 0, but that didnt work, it still starts at 1. So is there a way to make it start at 0? I couldnt figure this out.