~chunsang/+junk/snapcraft-mir-client-armhf

40 by Alberto Aguirre
Make demo.qml just a tiny bit less boring
1
import QtQuick 2.0
2
3
Rectangle
4
{
5
    anchors.fill: parent
6
    color: Qt.rgba(0.17254902, 0.0, 0.117647059, 1.0)
7
8
    Rectangle {
9
        color: Qt.rgba(0.866666667, 0.282352941, 0.141414141, 1.0)
10
        anchors.fill: parent
11
        
12
        SequentialAnimation on rotation {
13
            loops: Animation.Infinite
14
            NumberAnimation { from: 0; to: 360; duration: 10000; }
1 by Kevin Gunn
first checkin of mir client app snap
15
        }
40 by Alberto Aguirre
Make demo.qml just a tiny bit less boring
16
    }
17
}
1 by Kevin Gunn
first checkin of mir client app snap
18