mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 22:50:54 +02:00
10 lines
214 B
QML
10 lines
214 B
QML
import QtQuick 2.0
|
|
|
|
Rectangle {
|
|
id: window
|
|
width: 320
|
|
height: 480
|
|
focus: true
|
|
color: "red"
|
|
ColorAnimation on color { from: "red"; to: "yellow"; duration: 1000; loops: Animation.Infinite }
|
|
}
|