Advertisement
Guest User

QML rotating text

a guest
Oct 11th, 2024
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.47 KB | Source Code | 0 0
  1. Row {
  2.     spacing: 1
  3.     Repeater {
  4.         model: "Hello World!"
  5.         Text {
  6.             id: letter
  7.             text: modelData
  8.             PropertyAnimation {
  9.                 target: letter
  10.                 property: "rotation"
  11.                 from: 0
  12.                 to: 360
  13.                 duration: 2000
  14.                 loops: Animation.Infinite
  15.                 easing.type: Easing.InOutBack
  16.                 running: true
  17.             }
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement