summaryrefslogtreecommitdiffstats
path: root/examples/paintitem/myfile.qml
blob: b1b1446d8018b120b4c4aa2ca63af68dbaaf10af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick 2.0
import MyModule 1.0

Rectangle {
    width: 480
    height: 480
    gradient: Gradient {
        GradientStop { position: 0.0; color: "#00249a" }
        GradientStop { position: 0.7; color: "#ffd94f" }
        GradientStop { position: 1.0; color: "#ffa322" }
    }
    MyPaintItem {
        anchors.fill: parent
        anchors.margins: 10
    }
}