This repository has been archived on 2022-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
mobilismScrap/main.py

11 lines
193 B
Python
Raw Normal View History

2021-08-25 18:38:26 +02:00
import kivy
from kivy.app import App
from kivy.uix.label import Label
2021-08-23 12:03:00 +02:00
2021-08-25 18:38:26 +02:00
class MobiDL(App):
def build(self):
return Label(text = "...")
2021-08-23 21:04:31 +02:00
2021-08-23 12:03:00 +02:00
if __name__ == "__main__":
2021-08-25 18:38:26 +02:00
MobiDL().run()