koto/desktop/qml/Main.qml

21 lines
332 B
QML
Raw Permalink Normal View History

2024-09-29 17:29:10 +03:00
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
footer: PlayerBar {
}
globalDrawer: PrimaryNavigation {
windowRef: root
}
2024-09-29 17:29:10 +03:00
// TODO: Implement an onboarding page
pageStack.initialPage: Root {
2024-09-29 17:29:10 +03:00
}
}