Created
April 11, 2015 17:37
-
-
Save kived/ec086d199f188fd83963 to your computer and use it in GitHub Desktop.
Kivy: Screen template example
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
<ScreenTemplate@Screen>: | |
Button: | |
text: 'Button' | |
size_hint_y: None | |
height: sp(48) | |
ScreenManager: | |
ScreenTemplate: | |
name: 'screen1' | |
Button: | |
text: 'screen 1' | |
ScreenTemplate: | |
name: 'screen2' | |
Button: | |
text: 'screen 2' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment