mirror of
https://github.com/janishutz/BiogasControllerApp.git
synced 2025-11-25 05:44:23 +00:00
21 lines
348 B
Python
21 lines
348 B
Python
from kivy.uix.screenmanager import Screen
|
|
from kivy.lang import Builder
|
|
|
|
|
|
class HomeScreen(Screen):
|
|
def __init__(self, com: Com, **kw):
|
|
self._com = com;
|
|
super().__init__(**kw)
|
|
|
|
def start(self):
|
|
pass
|
|
|
|
def quit(self):
|
|
pass
|
|
|
|
def to_settings(self):
|
|
pass
|
|
|
|
|
|
Builder.load_file('./gui/home/home.kv')
|