mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-27 00:48:08 +00:00
12 lines
226 B
QML
12 lines
226 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.0
|
|
|
|
Button {
|
|
property alias image: backgroundImage.source
|
|
|
|
Image {
|
|
anchors.fill: parent
|
|
id: backgroundImage
|
|
fillMode: Image.PreserveAspectFit
|
|
}
|
|
}
|