Advertisement
Narzew

Kivy Multiple Screens KV file

Aug 8th, 2014
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. MainScreen:
  2.  
  3. <MainScreen>:
  4. BoxLayout:
  5. orientation: "vertical"
  6. Label:
  7. text: "Plan lekcji Biskupiaka"
  8. Button:
  9. text: "Plan Lekcji"
  10. Button:
  11. text: "Dzwonki"
  12. Button:
  13. text: "Przerwy"
  14. Button:
  15. text: "Nauczyciele"
  16. Button:
  17. text: "Wydarzenia"
  18. Button:
  19. text: "O programie"
  20. on_press: root.manager.current = 'about'
  21. Button:
  22. text: "Wyjście"
  23. on_press: exit()
  24. Label:
  25. text: "Copyright (2014) Narzew"
  26.  
  27. <AboutScreen>:
  28. BoxLayout:
  29. orientation: "vertical"
  30. Label:
  31. text: "App created by Narzew"
  32. Button:
  33. text: "Powrót"
  34. on_press: root.manager.current = 'main'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement