aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data/basicChanges2.qml
blob: 5ff46cc60c6f4d113aa7a79df9e9ed4aa565b5fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0
Rectangle {
    id: myRectangle
    width: 100; height: 100
    color: "red"
    states: [
        State {
            name: "blue"
            PropertyChanges { target: myRectangle; color: "blue" }
        },
        State {
            name: "green"
            PropertyChanges { target: myRectangle; color: "green" }
        }]
}