Begin implementing UI design, implement metadata fetching
Some checks failed
Build / build-linux (push) Failing after 17s
Build / build-windows (push) Has been cancelled

This commit is contained in:
Dark Steveneq
2025-10-14 21:02:58 +02:00
parent d46d37c465
commit 18ad69ba5d
4 changed files with 165 additions and 92 deletions

View File

@@ -20,14 +20,14 @@ ColumnLayout {
Label {
Layout.fillWidth: true
text: "Title: "
text: "Title: " + (index != null ? Player.streams[index].title : "")
heading: "h3"
horizontalAlignment: Text.AlignHCenter
}
Label {
Layout.fillWidth: true
text: "Listeners: "
text: "Listeners: " + (index != null ? Player.streams[index].listeners : 0)
heading: "h3"
horizontalAlignment: Text.AlignHCenter
}
@@ -62,7 +62,7 @@ ColumnLayout {
Layout.leftMargin: 5
from: 0.1
to: 1.1
stepSize: 0.1
stepSize: 0.05
value: Player.volume + 0.1
onMoved: Player.volume = value - 0.1
}