Skip to content
Snippets Groups Projects
Select Git revision
  • 1f0ddda5e8e8237cb1c2b59aefb9696cb4a7b570
  • master default
2 results

main.py

Blame
  • Forked from Brady James Garvin / meal_ordering_app
    2 commits behind the upstream repository.
    main.py 516 B
    from kivy.app import App
    from kivy.modules import inspector # For inspection.
    from kivy.core.window import Window # For inspection.
    
    __app_package__ = 'edu.unl.cse.soft161.order'
    __app__ = 'Order Meal'
    __version__ = '0.1'
    __flags__ = ['--bootstrap=sdl2', '--requirements=python2,kivy', '--orientation=landscape']
    
    
    class OrderApp(App):
        def build(self):
            inspector.create_inspector(Window, self) # For inspection (press control-e to toggle).
    
    
    if __name__ == '__main__':
        app = OrderApp()
        app.run()