added a lil' fella

This commit is contained in:
Sem
2026-04-18 00:40:26 +02:00
parent 24b0c41ffb
commit f8c8536ce3
4 changed files with 52 additions and 8 deletions

View File

@@ -20,6 +20,7 @@ Item {
property string nowPlayingArtist: ""
property string nowPlayingTitle: ""
property string nowPlayingArtUrl: ""
property bool nowPlaying: false
RowLayout {
anchors.fill: parent
@@ -44,6 +45,7 @@ Item {
artist: root.nowPlayingArtist
title: root.nowPlayingTitle
artUrl: root.nowPlayingArtUrl
isPlaying: root.nowPlaying
Layout.fillHeight: true
Layout.alignment: Qt.AlignBottom
}