2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-01-31 06:52:36 +00:00
|
|
|
import QtQuick 2.0
|
2011-04-27 10:05:43 +00:00
|
|
|
import QmlTime 1.0 as QmlTime
|
|
|
|
|
|
|
|
Item {
|
|
|
|
|
|
|
|
property string name: "Bob Smith"
|
|
|
|
|
|
|
|
QmlTime.Timer {
|
|
|
|
component: Item {
|
|
|
|
Text { text: name }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|