16 lines
261 B
QML
16 lines
261 B
QML
import QtQuick
|
|
import QtQuick.Effects
|
|
|
|
Image {
|
|
id: root
|
|
|
|
required property color tint
|
|
|
|
fillMode: Image.PreserveAspectFit
|
|
|
|
layer.enabled: true
|
|
layer.effect: MultiEffect {
|
|
colorization: 1.0
|
|
colorizationColor: root.tint
|
|
}
|
|
}
|