#:import utils kivy.utils WindowManager: PierwszyEkran: DrugiEkran: TrzeciEkran: : name: "pierwszy" BoxLayout: orientation:'horizontal' size: root.width, root.height Label: text:"PierwszyEkran" font_size: 32 Button: text: "Next >>" font_size: 32 on_release: app.root.current = "drugi" root.manager.transition.direction = "left" color: (0,1,0,1) background_color: (238/250, 50/250, 0/250, 1) : name: "drugi" BoxLayout: orientation: 'vertical' size: root.width, root.height Label: text: "Drugi Ekran" font_size: 32 Button: text: "Next >>" font_size: 32 on_release: app.root.current = "trzeci" root.manager.transition.direction = "up" color: (155/255, 250/250, 0/255,1) background_color: utils.get_color_from_hex('#ED01DE') : name: "trzeci" BoxLayout: orientation:"horizontal" size: root.width, root.height Label: text: "TrzeciEkran" font_size: 32 Button: text: "Next >>" font_size: 32 on_release: app.root.current = "pierwszy" root.manager.transition.direction="down" color: (155/255, 250/250, 0/255,1) background_color: utils.get_color_from_hex('#ED01DE')