Popups done, Readout Screen prepared, Small fixes

This commit is contained in:
2025-04-09 17:13:24 +02:00
parent 36a3079040
commit e0a54ac2bd
12 changed files with 248 additions and 46 deletions

View File

@@ -0,0 +1,25 @@
from kivy.uix.screenmanager import Screen
from kivy.lang import Builder
from lib.com import Com
class MainScreen(Screen):
def __init__(self, com: Com, **kw):
self._com = com;
super().__init__(**kw)
def start(self):
pass
def end(self):
pass
def reset(self):
pass
def back(self):
pass
Builder.load_file('./gui/main/main.kv')