ArtDelegate.qml 315 B

123456789101112131415
  1. import QtQuick 2.5
  2. Rectangle {
  3. color: "black"
  4. Image {
  5. id: artwork
  6. property int padding: 0
  7. width: parent.width - padding
  8. height: parent.height - padding
  9. fillMode: Image.PreserveAspectFit
  10. anchors.centerIn: parent
  11. source: "file://" + modelData
  12. }
  13. }