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
| ''' | |
| Carousel example with button inside. | |
| This is a tiny test for testing the scroll distance/timeout | |
| And ensure the down/up are dispatched if no gesture is done. | |
| ''' | |
| from kivy.uix.carousel import Carousel | |
| from kivy.uix.gridlayout import GridLayout | |
| from kivy.app import App | |
| from kivy.lang import Builder |
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.app import App | |
| from kivy.extras.highlight import KivyLexer | |
| from kivy.uix.spinner import Spinner, SpinnerOption | |
| from kivy.uix.boxlayout import BoxLayout | |
| from kivy.uix.codeinput import CodeInput | |
| from kivy.uix.popup import Popup | |
| from kivy.uix.button import Button | |
| from kivy.properties import ListProperty | |
| from kivy.core.window import Window | |
| from pygments import lexers |