summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/ListView/basic3/basic3.xml
blob: a587b8260c2016b69df1bbaf48d59b02ffdb0f05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Rect color="blue" width="800" height="600" id="Page">
    <ListModel id="Model">
        <Month>
            <name>January</name>
        </Month>
        <Month>
            <name>February</name>
        </Month>
    </ListModel>

    <ListView anchors.fill="{parent}" model="{Model}">
        <delegate>
            <Rect color="red" width="100" height="100">
                <Text text="{name}" />
            </Rect>
        </delegate>
    </ListView>
</Rect>