linphone-desktop/Linphone/view/Item/EffectImage.qml
Gaelle Braud 3fad8ee49e Overview : call page (with no call history)
New items : Vertical tab bar, search bar, numeric pad
2023-11-20 15:22:13 +01:00

29 lines
No EOL
475 B
QML

import QtQuick 2.7
import QtQuick.Layouts 1.3
import QtQuick.Controls 2.2 as Control
import QtQuick.Effects
import Linphone
Item {
id: mainItem
property alias image: image
property alias effect: effect
width: image.width
height: image.height
Image {
id: image
width: 20
height: 20
sourceSize.width: 20
fillMode: Image.PreserveAspectFit
anchors.centerIn: parent
}
MultiEffect {
id: effect
anchors.fill: image
source: image
maskSource: image
}
}