From cba440bcfced79eda2764e441c68239b6c594457 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Mon, 28 Apr 2025 00:21:53 +1000 Subject: feat: anims + box padding box provide padding and animate size and colour provide box and boxlayout for with/without layout provide clippingbox provide label for anim + rendertype configure QtQuick controls --- widgets/Label.qml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 widgets/Label.qml (limited to 'widgets/Label.qml') 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 + } + } +} -- cgit v1.2.3-freya