blob: 8b3ac0580b85887564b0d27223866a1b65b056b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import "root:/config"
import QtQuick
Rectangle {
id: root
property bool vertical: parent?.vertical ?? false // Convenience property for propagation to children
color: "transparent"
Behavior on color {
ColorAnimation {
duration: Appearance.anim.durations.normal
easing.type: Easing.BezierSpline
easing.bezierCurve: Appearance.anim.curves.standard
}
}
}
|