Add first gui try
This commit is contained in:
parent
7fa4091432
commit
f6bbed53d7
1 changed files with 10 additions and 0 deletions
10
gui.py
Normal file
10
gui.py
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
import kivy
|
||||||
|
from kivy.app import App
|
||||||
|
from kivy.uix.label import Label
|
||||||
|
|
||||||
|
class MobiDL(App):
|
||||||
|
def build(self):
|
||||||
|
return Label(text = "...")
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
MobiDL().run()
|
Reference in a new issue