Reputation: 1
I am currently learning KIVY in Python and trying to figure out how to freely choose position of an element such as label and buttons, like in Tkinter you can use relx and rely to choose excact position. Do anyone know if that is possible in KIVY?
Upvotes: 0
Views: 45
Reputation: 29458
Just set the pos
and size
to what you want. If the parent is something like a FloatLayout, also set the size_hint
to None, None
to avoid the layout automatically resizing it.
Upvotes: 1