aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/qml-extending-types/properties/ImageViewer.qml
blob: 29567389c657dfe68875a8237bcb361702f098bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
//![0]
// ImageViewer.qml
import QtQuick 2.0

Item {
    id: item
    width: 200; height: 200

    property string currentImage: "default-image.png"

    Image { source: item.currentImage }
}
//![0]