calamares-parch/etc/calamares/branding/parchlinux/ImageSlide.qml

24 lines
274 B
QML
Raw Normal View History

2024-03-26 13:06:08 +03:30
import QtQuick 2.5
Item {
id: imageslide
visible: false
anchors.fill: parent
property bool isSlide: true;
property string notes;
property string src;
Image {
id: image
source: src
anchors.centerIn: parent
}
}