Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
朱子楚\zhuzi committed Mar 12, 2023
1 parent 23bc5cd commit 2b9e9b2
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion example/AboutPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ FluWindow {
fontStyle: FluText.Title
}
FluText{
text:"v1.0.5"
text:"v1.0.6"
fontStyle: FluText.Body
Layout.alignment: Qt.AlignBottom
}
Expand Down Expand Up @@ -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
}
}
}


}


Expand Down

0 comments on commit 2b9e9b2

Please sign in to comment.