Facebook
From drugie, 2 Weeks ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 92
  1. #: import utils kivy.utils
  2.  
  3. WindowManager:
  4.     PierwszyEkran:
  5.     DrugiEkran:
  6.  
  7. <PierwszyEkran>:
  8.     name: "pierwszy"
  9.     BoxLayout:
  10.         orientation: "horizontal"
  11.         size: root.width, root.height
  12.         Label:
  13.             text: "Pierwszy Ekran"
  14.             font_size: 32
  15.         Button:
  16.             text: "Next >>>"
  17.             font_size: 32
  18.             on_release:
  19.                 app.root.current = "drugi"
  20.                 root.manager.transition.direction = "left"
  21.             color: 0, 1, 0, 1
  22.             background_color: 238/250, 50/250, 0/250, 1
  23.  
  24. <DrugiEkran>:
  25.     name: "drugi"
  26.     BoxLayout:
  27.         orientation: "vertical"
  28.         size: root.width, root.height
  29.         Label:
  30.             text: "Drugi Ekran"
  31.             font_size: 32
  32.         Button:
  33.             text: "<<< Back"
  34.             font_size: 32
  35.             on_release:
  36.                 app.root.current = "pierwszy"
  37.                  root.manager.transition.directi
  38.             color: 155/255, 250/250, 0/255, 1
  39.             background_color: utils.get_color_from_hex('#ED01DE')
  40.