cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
36 lines
743 B
QML
36 lines
743 B
QML
/*
|
|
* SPDX-FileCopyrightText: 2016 Marco Martin <mart@kde.org>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
import QtQuick
|
|
import org.kde.kirigami as Kirigami
|
|
|
|
Kirigami.ApplicationWindow {
|
|
id: root
|
|
|
|
globalDrawer: Kirigami.OverlayDrawer {
|
|
contentItem: Rectangle {
|
|
implicitWidth: Kirigami.Units.gridUnit * 10
|
|
color: "red"
|
|
anchors.fill: parent
|
|
}
|
|
}
|
|
contextDrawer: Kirigami.ContextDrawer {
|
|
id: contextDrawer
|
|
}
|
|
|
|
pageStack.initialPage: mainPageComponent
|
|
|
|
Component {
|
|
id: mainPageComponent
|
|
Kirigami.ScrollablePage {
|
|
title: "Hello"
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
}
|
|
}
|
|
}
|
|
}
|