Files
BiogasControllerApp/biogascontrollerapp/gui/about/about.py

11 lines
280 B
Python

from kivy.uix.screenmanager import Screen
from kivy.lang import Builder
import webbrowser
class AboutScreen(Screen):
def report_issue(self):
webbrowser.open('https://github.com/janishutz/BiogasControllerApp/issues', new=2)
Builder.load_file('./gui/about/about.kv')