From a1ed341639fd73ce916eecfce480b14cd8660999 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Thu, 8 May 2025 20:58:18 +1000 Subject: feat: notification popup area --- modules/notifications/Content.qml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 modules/notifications/Content.qml (limited to 'modules/notifications/Content.qml') diff --git a/modules/notifications/Content.qml b/modules/notifications/Content.qml new file mode 100644 index 0000000..86cef8b --- /dev/null +++ b/modules/notifications/Content.qml @@ -0,0 +1,22 @@ +import "root:/widgets" +import "root:/services" +import "root:/config" +import Quickshell +import QtQuick + +Column { + id: root + + // padding: Appearance.padding.large + + anchors.bottom: parent.bottom + anchors.right: parent.right + + spacing: Appearance.spacing.normal + + StyledRect { + width: 300 + height: 100 + // color: Qt.rgba(255, 0, 0, 0.4) + } +} -- cgit v1.2.3-freya