From 2b9e9b21596c455fc6d208ab433aa510b086ca62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=B1=E5=AD=90=E6=A5=9A=5Czhuzi?= Date: Sun, 12 Mar 2023 22:43:13 +0800 Subject: [PATCH] update --- example/AboutPage.qml | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/example/AboutPage.qml b/example/AboutPage.qml index 218811b..813a963 100644 --- a/example/AboutPage.qml +++ b/example/AboutPage.qml @@ -34,7 +34,7 @@ FluWindow { fontStyle: FluText.Title } FluText{ - text:"v1.0.5" + text:"v1.0.6" fontStyle: FluText.Body Layout.alignment: Qt.AlignBottom } @@ -70,6 +70,28 @@ FluWindow { } } + RowLayout{ + spacing: 14 + Layout.topMargin: 20 + Layout.leftMargin: 15 + FluText{ + id:text_info + text:"如果该项目对你有作用,就请点击上方链接给一个免费的star吧!" + ColorAnimation { + id: animation + target: text_info + property: "color" + from: "red" + to: "blue" + duration: 1000 + running: true + loops: Animation.Infinite + easing.type: Easing.InOutQuad + } + } + } + + }