The code below shows a rounded border, but label background stays rectangular, both in Pythonista 2 and 3. Is this a bug or a feature? Any workarounds?
from ui import *
v = View()
v.background_color = 'white'
label = Label()
label.text = 'This is a label'
label.background_color = 'black'
label.text_color = 'white'
label.corner_radius = 5
label.border_color = 'white'
label.border_width = 1
label.size_to_fit()
label.center = (v.width * 0.5, v.height * 0.5)
label.flex = 'LRTB'
v.add_subview(label)
v.present('sheet')