Files
BiogasControllerApp/biogascontrollerapp/gui/about/about.py
2025-05-12 16:28:28 +02:00

14 lines
383 B
Python

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