Files
midi-micro-bit_sound-converter/gui/loading_screen.kv
Janis Hutz 6fad58dd64 Major refactor
I have spent some time (like two hours) fixing up the app, getting it up
to a somewhat better level. Code is still bad, but that's that. If
anybody is interested to make the code neater, feel free to open a PR!
2025-03-07 17:18:15 +01:00

25 lines
753 B
Plaintext

TrackChooseScreen:
name: "Track"
md_bg_color: app.theme_cls.accent_color
GridLayout:
cols:1
Label:
text: "Track selection"
font_size: 30
bold: True
italic: True
color: (50, 50, 255, 1)
FloatLayout:
MDRaisedButton:
size: "200dp", "50dp"
pos_hint: {"center_x": 0.5, "center_y": 0.5}
on_release: root.show_dropdown(self)
size_hint: 0.7, 0.2
pos_hint: {"x": 0.15, "y":0.5}
text: "Select a track"
Button:
text: "confirm"
background_color: app.theme_cls.primary_color
on_release:
root.extract()