DATABASE SUPPORT, ARTWORK, and a title display

This commit is contained in:
2026-08-14 12:44:56 -05:00
parent 39850225fc
commit e769d50a68
11 changed files with 534 additions and 16 deletions
+9
View File
@@ -4,6 +4,8 @@ Item {
id: root
property bool highlighted: false
property string title: ""
property url artwork
width: 120
height: 180
@@ -20,5 +22,12 @@ Item {
Rectangle {
anchors.fill: parent
color: "white"
Image {
anchors.fill: parent
source: root.artwork
fillMode: Image.PreserveAspectCrop
}
}
}