summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/listview/dummydata/ContactModel.qml
blob: 302dfd2e845a41377503b5347300e0380a585b78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!--
ListModel allows free form list models to be defined and populated.
Be sure to name the file the same as the id.
-->
<ListModel id="ContactModel">
    <Contact>
        <name>Bill Smith</name>
        <number>555 3264</number>
    </Contact>
    <Contact>
        <name>John Brown</name>
        <number>555 8426</number>
    </Contact>
    <Contact>
        <name>Sam Wise</name>
        <number>555 0473</number>
    </Contact>
</ListModel>