Main.qml
1 import org.kde.kirigami as Kirigami 2 3 Kirigami.ApplicationWindow { 4 id: root 5 6 height: 600 7 title: "Koto" 8 visible: true 9 width: 1000 10 11 footer: PlayerBar { 12 } 13 globalDrawer: PrimaryNavigation { 14 windowRef: root 15 } 16 17 // TODO: Implement an onboarding page 18 pageStack.initialPage: Root { 19 } 20 }