How do you align text in a Button? I didn’t see any way to do it in the docs. Only using valign and halign to align the button in its bbox. In a related question, I tried to change the padding, but didn’t notice an effect.
f = Figure()
b = Button(f, label="hello",
height=400, width=400,
padding=(0.0f0, 0.0f0, 10.0f0, 10.0f0))
f
looks the same to me as
f = Figure()
b = Button(f, label="hello",
height=400, width=400,
padding=(10.0f0, 10.0f0, 10.0f0, 10.0f0))
f