aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/qml/qtbinding/context-advanced/MyItem.qml
blob: 0d44a69b143110f20cf1112248eb93b9c7b75032 (plain)
1
2
3
4
5
6
7
8
9
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
//![0]
// MyItem.qml
import QtQuick 2.0

Text { text: applicationData.getCurrentDateTime() }
//![0]