20 lines
332 B
QML
20 lines
332 B
QML
import org.kde.kirigami as Kirigami
|
|
|
|
Kirigami.ApplicationWindow {
|
|
id: root
|
|
|
|
height: 600
|
|
title: "Koto"
|
|
visible: true
|
|
width: 1000
|
|
|
|
footer: PlayerBar {
|
|
}
|
|
globalDrawer: PrimaryNavigation {
|
|
windowRef: root
|
|
}
|
|
|
|
// TODO: Implement an onboarding page
|
|
pageStack.initialPage: Root {
|
|
}
|
|
}
|