From 563fdd73d9a9967a3d43ac675293eb14aaa3ae14 Mon Sep 17 00:00:00 2001 From: quadrismegistus Date: Mon, 3 Aug 2020 08:04:07 +0100 Subject: [PATCH] updates --- client/test.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 client/test.py diff --git a/client/test.py b/client/test.py new file mode 100644 index 0000000..5d79299 --- /dev/null +++ b/client/test.py @@ -0,0 +1,10 @@ +from kivymd.app import MDApp +from kivymd.uix.label import MDLabel + + +class MainApp(MDApp): + def build(self): + return MDLabel(text="Hello, World", halign="center") + + +MainApp().run()