52 lines
1.6 KiB
Plaintext
52 lines
1.6 KiB
Plaintext
ShowcaseScreen:
|
|
name: "ShowcaseScreen"
|
|
on_pre_enter: root.beginUpdating()
|
|
md_bg_color: (0, 0, 0, 1)
|
|
FloatLayout:
|
|
Label:
|
|
text: "Currently Playing"
|
|
id: titleinfo
|
|
bold: True
|
|
italic: True
|
|
pos_hint: {"y": 0.35}
|
|
font_size: 60
|
|
color: app.theme_cls.primary_color
|
|
MDProgressBar:
|
|
orientation: "horizontal"
|
|
value: 100
|
|
pos_hint: {"y": 0.3}
|
|
color: (1, 1, 1, 0.5)
|
|
MDProgressBar:
|
|
id: progressbars
|
|
orientation: "horizontal"
|
|
value: 0
|
|
pos_hint: {"y": 0.3}
|
|
color: app.theme_cls.primary_dark
|
|
Label:
|
|
id: current_song
|
|
text: "Currently playing Song will appear here"
|
|
pos_hint: {"y": 0.22}
|
|
font_size: 45
|
|
color: app.theme_cls.primary_color
|
|
shorten: False
|
|
halign: "center"
|
|
Label:
|
|
id: upcoming_ind
|
|
text: "upcoming"
|
|
bold: True
|
|
italic: True
|
|
font_size: 35
|
|
pos_hint: {"y": -0.05}
|
|
color: app.theme_cls.primary_color
|
|
Label:
|
|
id: upcoming_songs
|
|
text: "Upcoming Songs will appear here"
|
|
pos_hint: {"y": -0.25}
|
|
font_size: 30
|
|
color: app.theme_cls.primary_color
|
|
shorten: False
|
|
halign: "center"
|
|
Label:
|
|
text: "Designed and developed by Janis Hutz"
|
|
font_size: 7
|
|
pos_hint: {"y": -0.48} |