Warning, /plasma/libplasma/templates/qml-plasmoid6/package/contents/ui/main.qml is written in an unsupported language. File is not indexed.
0001 /*
0002 SPDX-FileCopyrightText: %{CURRENT_YEAR} %{AUTHOR} <%{EMAIL}>
0003 SPDX-License-Identifier: LGPL-2.1-or-later
0004 */
0005
0006 import QtQuick
0007 import QtQuick.Layouts
0008 import org.kde.plasma.plasmoid
0009 import org.kde.plasma.components as PlasmaComponents
0010
0011 Item {
0012 Plasmoid.fullRepresentation: ColumnLayout {
0013 anchors.fill: parent
0014 Image {
0015 Layout.fillHeight: true
0016 Layout.fillWidth: true
0017 fillMode: Image.PreserveAspectFit
0018 source: "../images/pairs.svgz"
0019 }
0020 PlasmaComponents.Label {
0021 Layout.alignment: Qt.AlignCenter
0022 text: "This is Plasma!"
0023 }
0024 }
0025 }