mirror of
https://github.com/janishutz/BiogasControllerApp.git
synced 2025-11-25 05:44:23 +00:00
17 lines
251 B
Python
17 lines
251 B
Python
from kivy.uix.screenmanager import Screen
|
|
from kivy.lang import Builder
|
|
|
|
|
|
class HomeScreen(Screen):
|
|
def start(self):
|
|
pass
|
|
|
|
def quit(self):
|
|
pass
|
|
|
|
def to_settings(self):
|
|
pass
|
|
|
|
|
|
Builder.load_file('./gui/home/home.kv')
|