You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
415 B

10 months ago
import QtQuick 2.13
import QtGraphicalEffects 1.13
Item {
property alias color: idOverlay.color
property alias source: idImage.source
10 months ago
ColorOverlay {
id: idOverlay
anchors.fill: parent
source: idImage
}
10 months ago
Image {
id: idImage
visible: false
fillMode: Image.PreserveAspectFit
sourceSize.width: width
sourceSize.height: height
}
}