added quit button to showcase app

This commit is contained in:
janis
2022-10-30 20:43:16 +01:00
parent 459317423f
commit 3c4b3b20a5
4 changed files with 13 additions and 8 deletions

View File

@@ -14,7 +14,12 @@ LoginWindow:
pos_hint: {'x': 0.25, 'y': 0.5}
size_hint: 0.5, 0.2
id: url
Button:
text: "connect"
on_release:
root.connect()
GridLayout:
Button:
text: "connect"
on_release:
root.connect()
Button:
text: "Quit"
on_release:
app.stop()