Finished Version 1.0. Guide for installation will be available soon

This commit is contained in:
janis
2022-02-27 13:48:51 +01:00
commit 523c11281c
8 changed files with 378 additions and 0 deletions

22
gui/filechooser.kv Normal file
View File

@@ -0,0 +1,22 @@
FileChooserScreen:
name: "ChooseFile"
md_bg_color: (0, 0, 0, 1)
BoxLayout:
size: root.size
pos: root.pos
orientation: "vertical"
FileChooserListView:
id: filechooser
BoxLayout:
size_hint_y: None
height: 30
Button:
text: "Cancel"
on_release:
app.root.current = "Home"
root.manager.transition.direction = "right"
Button:
text: "Load"
on_release: root.load(filechooser.path, filechooser.selection)