summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/ListView/basic1/basic1.xml
blob: 5038c0a16a0f601396d59ec9a3f10fb93fb6104c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Rect color="blue" width="800" height="600" id="Page">
    <ListView anchors.fill="{parent}">
        <delegate>
            <Rect color="red" width="100" height="100">
                <Text text="{name}" />
            </Rect>
        </delegate>
        <model>
            <ListModel>
                <Month>
                    <name>January</name>
                </Month>
                <Month>
                    <name>February</name>
                </Month>
            </ListModel>
        </model>
    </ListView>
</Rect>