aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qdeclarativestates/data/basicChanges.qml
blob: 3e2b73acdef16d4e4922600b8ba38dbe01a0be5a (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.0
Rectangle {
    id: myRectangle
    width: 100; height: 100
    color: "red"
    states: State {
        name: "blue"
        PropertyChanges { target: myRectangle; color: "blue" }
    }
}