summaryrefslogtreecommitdiffstats
path: root/examples/declarative/flipable/flipable-example.qml
blob: 171353f1967d0775f5e506d9d51d286bdc660bbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Qt 4.7
import "content"

Rectangle {
    id: window; width: 480; height: 320
    color: "darkgreen"

    Row {
        anchors.centerIn: parent; spacing: 30
        Card { image: "content/9_club.png"; angle: 180; yAxis: 1 }
        Card { image: "content/5_heart.png"; angle: 540; xAxis: 1 }
    }
}