summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/flickable/Day.qml
blob: 63fbc7875ce9bf7088663b023b223ef206cb7b29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Rect {
    property string day

    width: 400
    height: 500
    radius: 7
    pen.color: "black"
    id: Page
    Image {
        x: 10
        y: 10
        source: "cork.jpg"
        opaque: true
    }
    Text {
        x: 20
        y: 20
        height: 40
        font.size: 14
        font.bold: true
        width: 370
        text: day
        style: "Outline"
        styleColor: "#dedede"
    }
}