initial commit
This commit is contained in:
commit
fae3d30dbd
26 changed files with 18409 additions and 0 deletions
20
desktop/qml/Main.qml
Normal file
20
desktop/qml/Main.qml
Normal file
|
@ -0,0 +1,20 @@
|
|||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
import QtQuick.Controls as Controls
|
||||
|
||||
import org.kde.kirigami as Kirigami
|
||||
|
||||
Kirigami.ApplicationWindow {
|
||||
id: root
|
||||
width: 1000
|
||||
height: 600
|
||||
visible: true
|
||||
title: "Koto"
|
||||
|
||||
// TODO: Implement an onboarding page
|
||||
pageStack.initialPage: PrimaryNavigation {
|
||||
Component.onCompleted: {
|
||||
pageStack.push(Qt.createComponent("HomePage.qml"), {});
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue