Displaying images in item delegates.

This commit is contained in:
2026-03-07 12:07:17 +01:00
parent dc8a4683db
commit ab5f9b1952
5 changed files with 9 additions and 4 deletions

View File

@ -48,12 +48,13 @@ Item {
width: parent.width
spacing: 10
Rectangle {
Image {
id: icon
width: 50
height: 50
color: wccLavenderDark
source: "icons/software-application.png"
}
Column {
width: background.width - icon.width - 20
height: icon.height
@ -140,7 +141,7 @@ Item {
right: flick.right
top: flick.top
}
source: ":/moreUp.png"
source: "icons/moreUp.png"
opacity: flick.atYBeginning ? 0 : 1
}
@ -150,7 +151,7 @@ Item {
bottom: flick.bottom
}
source: ":/moreDown.png"
source: "icons/moreDown.png"
opacity: flick.atYEnd ? 0 : 1
}
}