notifications working (totally) perfectly
This commit is contained in:
23
Components/MidpointGradient.qml
Normal file
23
Components/MidpointGradient.qml
Normal 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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user