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.factory import Factory | |
| from kivy.compat import string_types | |
| from kivy.uix.spinner import Spinner, SpinnerOption | |
| from kivy.properties import ListProperty, ObjectProperty, StringProperty | |
| from kivy.logger import Logger | |
| class HVSpinnerOption(SpinnerOption): | |
| """Represents an option in HVSpinner. It adds :attr:`value` to represent a hidden value not shown to user.""" | |
| value = ObjectProperty(None) |