24 lines
524 B
QML
24 lines
524 B
QML
// -*- coding: iso-8859-1 -*-
|
|
/*
|
|
SPDX-FileCopyrightText: 2012 Marco Martin <mart@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
import QtQuick 2.0
|
|
import org.kde.plasma.plasmoid 2.0
|
|
import QtQuick.Layouts 1.0
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
import org.kde.plasma.components 2.0 as PlasmaComponents
|
|
|
|
Item {
|
|
Layout.minimumWidth: 200
|
|
Layout.minimumHeight: 300
|
|
|
|
PlasmaComponents.Label {
|
|
text: i18n("Hello world")
|
|
}
|
|
|
|
Plasmoid.associatedApplicationUrls: "file:///home"
|
|
}
|