aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quickcontrols/wearable/Wearable/notifications.js
blob: 62f46e0a0b069b62dcf6dec9a85b150d75d7ccd4 (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
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

function populateData(listData) {
    listData.append({
                        name: "John Doe",
                        gender: "m",
                        date: "02/15/2017",
                        time: "09:20 am"
                      });

    listData.append({
                        name: "Jane Worldege",
                        gender: "f",
                        date: "02/06/2017",
                        time: "10:15 am"
                      });

    listData.append({
                        name: "Jennifer Wang",
                        gender: "f",
                        date: "02/03/2017",
                        time: "05:16 pm"
                      });
}