summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/ListView/basic4/basic4.xml
blob: 4b9201c82154748a7262f27d8b03ab3f22d50e29 (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">
    <ListModel id="Model">
        <Month>
            <name>January</name>
        </Month>
        <Month>
            <name>February</name>
        </Month>
    </ListModel>

    <Component id="Delegate">
        <Rect color="red" width="100" height="100">
            <Text text="{name}" />
        </Rect>
    </Component>

    <ListView anchors.fill="{parent}" model="{Model}" delegate="{Delegate}">
    </ListView>
</Rect>