mirror of
https://github.com/janishutz/BiogasControllerApp.git
synced 2025-11-25 05:44:23 +00:00
18 lines
331 B
Python
18 lines
331 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):
|
|
self.manager.current = 'settings'
|
|
self.manager.transition.direction = 'down'
|
|
|
|
|
|
Builder.load_file('./gui/home/home.kv')
|