import QtQuick.Window Window { visible: true color: "blue" width: 1280 height: 720 Text { text: "hello world " + String.fromCodePoint(0x1F600) anchors.centerIn: parent color: "red" NumberAnimation on rotation { from: 0; to: 360; loops: -1; duration: 5000 } font.pointSize: 32 ColorAnimation on color { from: "red" to: "yellow" duration: 3000 loops: -1 } } }