15 lines
413 B
QML
15 lines
413 B
QML
// Includes relevant modules used by the QML
|
|
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15 as Controls
|
|
import QtQuick.Layouts 1.15
|
|
import org.kde.kirigami 2.20 as Kirigami
|
|
|
|
Kirigami.ScrollablePage {
|
|
title: i18nc("@title", "Kountdown")
|
|
|
|
Controls.Label {
|
|
// Center label horizontally and vertically within parent object
|
|
anchors.centerIn: parent
|
|
text: i18n("Hello World!")
|
|
}
|
|
}
|