summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/contacts/2_Reuse/2_Reuse.qml
blob: 29fdf512ef6531f1a2de200d1e4c3455e7f82106 (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
26
27
28
29
30
31
32
33
34
<Rect id="page" width="480" height="360" color='black'>
    <properties>
        <Property name="mouseGrabbed" value="false"/>
    </properties>
    <Item x="0" y="0" width="240" height="180">
        <ContactField1
            y="5"
            anchors.left="{parent.left}" anchors.leftMargin="5"
            anchors.right="{parent.right}" anchors.rightMargin="5"/>
        <ContactField2
            y="40"
            anchors.left="{parent.left}" anchors.leftMargin="5"
            anchors.right="{parent.right}" anchors.rightMargin="5"/>
        <ContactField3
            y="75"
            anchors.left="{parent.left}" anchors.leftMargin="5"
            anchors.right="{parent.right}" anchors.rightMargin="5"
            label="Phone Number"
            icon="../shared/pics/phone.png"
            value="123123"/>
    </Item>
    <Rect pen.color="gray" x="5" y="115" width="230" height="180" radius="5">
        <Contact3 anchors.fill="{parent}"
                label="Brian"
                phone="123123"
                email="brian@bigisp.com" />
    </Rect>
    <Rect pen.color="gray" x="245" y="115" width="230" height="180" radius="5">
        <Contact4 anchors.fill="{parent}"
                label="Brian"
                phone="123123"
                email="brian@bigisp.com" />
    </Rect>
</Rect>