Initial import

This commit is contained in:
2019-11-05 14:42:54 -05:00
parent 0a5814c505
commit 0c3e79e148
15 changed files with 268 additions and 0 deletions

30
src/contents/ui/main.qml Normal file
View File

@@ -0,0 +1,30 @@
import QtQuick 2.1
import org.kde.kirigami 2.4 as Kirigami
import QtQuick.Controls 2.0 as Controls
Kirigami.ApplicationWindow {
id: root
title: "Hello"
pageStack.initialPage: mainPageComponent
Component {
id: mainPageComponent
Kirigami.Page {
title: "Hello"
Rectangle {
color: "black"
anchors.fill: parent
Controls.Label {
text: qsTr("Hello Kirigami")
color: "white"
anchors.centerIn: parent
}
}
}
}
}