a08449a9a2
Summary: Also consistently use LGPL-2.1-or-later as default license Reviewers: #plasma, cordlandwehr Reviewed By: cordlandwehr Subscribers: kde-frameworks-devel Tags: #frameworks Differential Revision: https://phabricator.kde.org/D27640
27 lines
705 B
QML
27 lines
705 B
QML
/*
|
|
SPDX-FileCopyrightText: %{CURRENT_YEAR} %{AUTHOR} <%{EMAIL}>
|
|
SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
import QtQuick 2.1
|
|
import QtQuick.Layouts 1.1
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
import org.kde.plasma.plasmoid 2.0
|
|
import org.kde.plasma.components 2.0 as PlasmaComponents
|
|
|
|
Item {
|
|
Plasmoid.fullRepresentation: ColumnLayout {
|
|
anchors.fill: parent
|
|
Image {
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
fillMode: Image.PreserveAspectFit
|
|
source: "../images/pairs.svgz"
|
|
}
|
|
PlasmaComponents.Label {
|
|
Layout.alignment: Qt.AlignCenter
|
|
text: "This is Plasma!"
|
|
}
|
|
}
|
|
}
|