22 lines
381 B
QML
22 lines
381 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls as Controls
|
|
|
|
import org.kde.kirigami as Kirigami
|
|
|
|
Kirigami.ApplicationWindow {
|
|
id: root
|
|
|
|
height: 600
|
|
title: "Koto"
|
|
visible: true
|
|
width: 1000
|
|
|
|
globalDrawer: PrimaryNavigation {
|
|
windowRef: root
|
|
}
|
|
|
|
// TODO: Implement an onboarding page
|
|
pageStack.initialPage: HomePage {
|
|
}
|
|
}
|