summaryrefslogtreecommitdiffstats
path: root/demos/declarative/samegame/content/SameDialog.qml
blob: eed52f06c570cd8a10d4b31a9f584da8c735cc0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Rect {
    property string text: "Hello World!"
    property int show: 0
    id: page
    opacity: 0
    opacity: Behavior { 
        SequentialAnimation {
            NumberAnimation {property: "opacity"; duration: 1000 }
            NumberAnimation {property: "opacity"; to: 0;  duration: 1000 }
        }
    }
    color: "white"
    pen.width: 1
    width: 200
    height: 60
    Text { anchors.centeredIn: parent; text: parent.text }
}