diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-18 15:19:15 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-18 15:19:15 +1000 |
| commit | 85d575f6c18017693cb2f3ab07314a0cf43adbe6 (patch) | |
| tree | 89540859a71162c28c8419af49c75cc3634e6b70 /modules/sidebar/Content.qml | |
| parent | launcher: fix open anim (diff) | |
| download | caelestia-shell-85d575f6c18017693cb2f3ab07314a0cf43adbe6.tar.gz caelestia-shell-85d575f6c18017693cb2f3ab07314a0cf43adbe6.tar.bz2 caelestia-shell-85d575f6c18017693cb2f3ab07314a0cf43adbe6.zip | |
feat: add sidebar
WIP
Diffstat (limited to 'modules/sidebar/Content.qml')
| -rw-r--r-- | modules/sidebar/Content.qml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/modules/sidebar/Content.qml b/modules/sidebar/Content.qml new file mode 100644 index 0000000..13829bd --- /dev/null +++ b/modules/sidebar/Content.qml @@ -0,0 +1,19 @@ +import qs.config +import QtQuick +import QtQuick.Layouts + +Item { + id: root + + required property var visibilities + + implicitWidth: layout.implicitWidth + implicitHeight: layout.implicitHeight + + ColumnLayout { + id: layout + + anchors.fill: parent + spacing: Appearance.spacing.normal + } +} |