aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/imgprovider/imageprovider-example.qml
blob: db65a3bc413a99ea2c3e462d8a9e84e7c8b99fdc (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick 2.0
//![0]
Column {
    Image { source: "image://colors/yellow" }
    Image { source: "image://colors/red" }
}
//![0]