0
votes
1answer
172 views

Kivy template with dynamic grid layout

I'm trying to create a template for a layout which looks like the following: |----------| | | | IMAGE | <--- Just an image (square) | | |----------| |[btn][btn]| <--- ...
0
votes
1answer
442 views

How can I set the position (x,y coordinates) of a grid layout in kivy?

I've noticed that when you make buttons using the grid layout in Kivy they are created at (0,0) and move over a number of spaces depending on the length and width of previous buttons. However, I'd ...
0
votes
1answer
238 views

How can I change the order of the BoxLayout in kivy?

I am testing kivy and I want to create a BoxLayout so to stack some buttons. My problem is that the children that are added to the layout follow a bottom-top logic while I want the opposite. Do you ...