Skip to content
Snippets Groups Projects
Commit e342d723 authored by Brady James Garvin's avatar Brady James Garvin
Browse files

Initial commit.

parents
No related branches found
No related tags found
No related merge requests found
.idea
main.py 0 → 100644
from kivy.app import App
__app_package__ = 'edu.unl.cse.soft161.order'
__app__ = 'Order Meal'
__version__ = '0.1'
__flags__ = ['--bootstrap=sdl2', '--requirements=python2,kivy', '--orientation=landscape']
class OrderApp(App):
pass
if __name__ == '__main__':
app = OrderApp()
app.run()
BoxLayout:
orientation: 'vertical'
Label:
text: '[Your meal-ordering GUI here]'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment