Created
August 5, 2018 18:58
-
-
Save inclement/e850ea0670b875c15700fa667d5c208b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from kivy.lang import parent, properties, ids | |
| w = Label( | |
| id='the_label', | |
| text=properties.width, | |
| pos=parent.pos, | |
| children=[ | |
| Button( | |
| pos=ids.the_label.pos), | |
| GridLayout( | |
| pos=ids.the_label.pos)]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment