mirror of
https://github.com/janishutz/midi-micro-bit_sound-converter.git
synced 2025-11-25 13:54:26 +00:00
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!
25 lines
753 B
Plaintext
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()
|