diff options
Diffstat (limited to 'widgets/Label.qml')
| -rw-r--r-- | widgets/Label.qml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/widgets/Label.qml b/widgets/Label.qml new file mode 100644 index 0000000..e1e22ba --- /dev/null +++ b/widgets/Label.qml @@ -0,0 +1,16 @@ +import "root:/config" +import QtQuick + +Text { + id: root + + renderType: Text.NativeRendering + + Behavior on color { + ColorAnimation { + duration: Appearance.anim.durations.normal + easing.type: Easing.BezierSpline + easing.bezierCurve: Appearance.anim.curves.standard + } + } +} |