summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/flickable/Day.qml
blob: 6af7b1c9fbdfc7080fd081cf9cf474506efb27eb (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
Rect {
    property string day

    width: 200
    height: 300
    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
        text: day
        style: "Outline"
        styleColor: "#dedede"
    }
}