Files

33 lines
551 B
QML

import QtQuick
Item {
id: root
property bool highlighted: false
property string title: ""
property url artwork
width: 120
height: 180
scale: highlighted ? 1.10 : 1.0
Behavior on scale {
NumberAnimation {
duration: 120
easing.type: Easing.OutCubic
}
}
Rectangle {
anchors.fill: parent
color: "white"
Image {
anchors.fill: parent
source: root.artwork
fillMode: Image.PreserveAspectCrop
}
}
}