add slidefade text animation to some stuff

This commit is contained in:
end-4
2025-08-19 18:09:07 +07:00
parent ee21139356
commit 8d3a036b3b
8 changed files with 87 additions and 5 deletions
@@ -205,6 +205,9 @@ Item { // Player instance
color: blendedColors.colOnLayer0
elide: Text.ElideRight
text: StringUtils.cleanMusicTitle(playerController.player?.trackTitle) || "Untitled"
animateChange: true
animationDistanceX: 6
animationDistanceY: 0
}
StyledText {
id: trackArtist
@@ -213,6 +216,9 @@ Item { // Player instance
color: blendedColors.colSubtext
elide: Text.ElideRight
text: playerController.player?.trackArtist
animateChange: true
animationDistanceX: 6
animationDistanceY: 0
}
Item { Layout.fillHeight: true }
Item {