summaryrefslogtreecommitdiffstats
path: root/examples/declarative/flipable/flipable-example.qml
blob: eebc7212f2e421db1949204027b369283a6a05b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Qt 4.6
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 }
    }
}