aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/imageprovider/imageprovider-example.qml
blob: 5bd092bc2d1f7483f44af656283b2c0474d2e52d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
import "ImageProviderCore" // import the plugin that registers the color image provider

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