summaryrefslogtreecommitdiffstats
path: root/demos/declarative/minehunt/test.qml
blob: 11ed1822428a6a7780e8541d696754d3a5927bb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Qt 4.6

    Image {
                    source: "pics/front.png"
                    width: 40
                    height: 40
                    Image {
                        anchors.horizontalCenter: parent.horizontalCenter
                        anchors.verticalCenter: parent.verticalCenter
                        source: "pics/flag.png"
                        opacity: 1
                    }
                }