overte/android/app/src/main/cpp/simple.qml
2017-12-07 11:19:31 -08:00

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 }
}