koto/desktop/qml/Main.qml

23 lines
381 B
QML
Raw Normal View History

2024-09-29 17:29:10 +03:00
import QtQuick
import QtQuick.Layouts
import QtQuick.Controls as Controls
import org.kde.kirigami as Kirigami
Kirigami.ApplicationWindow {
id: root
2024-09-29 17:29:10 +03:00
height: 600
title: "Koto"
visible: true
width: 1000
globalDrawer: PrimaryNavigation {
windowRef: root
}
2024-09-29 17:29:10 +03:00
// TODO: Implement an onboarding page
pageStack.initialPage: HomePage {
2024-09-29 17:29:10 +03:00
}
}