aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qdeclarativestates/data/script.qml
blob: 218f0fae743193f737f8464c019f2e27c251ed18 (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"
        StateChangeScript { script: myRectangle.color = "blue"; }
    }
}