Last active
October 14, 2015 21:00
-
-
Save kived/479729906da5fdd95d5e to your computer and use it in GitHub Desktop.
Kivy: options on spinner
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
MyWidget: | |
Spinner: | |
values: root.options |
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
class MyWidget(Widget): | |
options = ('a', 'b', 'c') | |
prop = OptionProperty('a', options) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment