notifications working (totally) perfectly

This commit is contained in:
2026-06-16 22:01:15 +01:00
parent 23407ea36b
commit 603da98035
9 changed files with 598 additions and 79 deletions

View File

@@ -0,0 +1,23 @@
import QtQuick
Gradient {
id: root
required property color color
property double midpoint: 0.6
GradientStop {
color: "transparent"
position: 0.0
}
GradientStop {
color: "transparent"
position: root.midpoint
}
GradientStop {
color: root.color
position: 1.0
}
}