I have a widget, which has a button, which has text.
I'd like to place that text to the right of the button, maybe even go as crazy as to italisize that text, and have it be placed over as far as the buttons width
Here's what I have now:
<MyWidget>:
Button:
pos_hint: {'center_x': .5, 'center_y': .95}
Label:
text: "Hello!"
pos_x: root.x + 20
Unfortunatley, the text just gets placed at the bottom left of the screen. What is the proper way to position the label?