aboutsummaryrefslogtreecommitdiffstats
path: root/doc/codesnippets/examples/declarative/cppextensions/imageprovider/imageprovider-example.qml
blob: 5f4c99b035242094cd6ae674bd56e1ae3c018388 (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 1.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]