mirror of
https://github.com/janishutz/BiogasControllerApp.git
synced 2025-11-25 05:44:23 +00:00
App launching, some porting work complete
This commit is contained in:
17
biogascontrollerapp/gui/home/home.py
Normal file
17
biogascontrollerapp/gui/home/home.py
Normal file
@@ -0,0 +1,17 @@
|
||||
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')
|
||||
Reference in New Issue
Block a user