Add basic code
This commit is contained in:
parent
6103876e04
commit
400f7a6c23
5 changed files with 101 additions and 0 deletions
17
src/Main.qml
Normal file
17
src/Main.qml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
import QtQuick.Controls as Controls
|
||||
import org.kde.kirigami as Kirigami
|
||||
|
||||
Kirigami.ApplicationWindow {
|
||||
id: root
|
||||
title: "Leek"
|
||||
|
||||
pageStack.initialPage: Kirigami.Page {
|
||||
Controls.Label {
|
||||
anchors.centerIn: parent
|
||||
text: "Hello world"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue