In Qiwi:
from kivy.app import App
from kivy.uix.label import Label
class TestApp(App):
def build(self):
label = Label(text="TEST")
return label
TestApp().run()
My label is in the center of the window:

How can I snap my label to the lower right corner of the window?
You think,
label.halign = 'right'
label.valign = 'bottom'
would do the trick, but as the Labeldocumentation points out ,
The property valignwill have no effect, but halignwill have an effect if your text has new lines; one line of text will be centered, although halignset to the left (default).
source
share