aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/imageprovider/imageprovider-example.qml
blob: bd3bb0f47e457a8be199669168dc9e1a4227c6c0 (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 2.0
import "ImageProviderCore" // import the plugin that registers the color image provider

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