Created
February 26, 2015 22:48
-
-
Save kived/f5190f21dbdd71e08e9b to your computer and use it in GitHub Desktop.
Kivy: accessing another widget
This file contains 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
<InnerWidget@BoxLayout>: | |
textinput: ti | |
Label: | |
text: 'hello' | |
TextInput: | |
id: ti | |
<OuterWidget@BoxLayout>: | |
InnerWidget: | |
id: inner | |
Label: | |
text: inner.textinput.text |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment