Beispiel #1
0
                root.manager.transition.duration = 1
                root.manager.current = "screen_one"
""")


class ScreenOne(Screen):
    pass


class ScreenTwo(Screen):
    pass


screen_manager = ScreenManager()

screen_manager.add_widgest(ScreenOne(name="screen_one"))
screen_manager.add_widget(ScreenTwo(name="screen_two"))


class KivyTut2App(App):
    def build(self):
        return screen_manager


sample_app = KivyTut2App()
sample_app.run()

# I learned Django after this, and that was good for learning about
# web frameworks and really what people are looking for.
# After learning Django, I found out that people are looking for MEAN stack and
# MERN stack. Now that I have a working part of the MEAN stack but am not finding