aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/rectangle/rectangle-colors.qml
blob: bfa106dc4a0669f8956227ea7fc1196f83fca34b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick

Item {
    width: 100; height: 200

Item {
    x: 10; y: 10
    width: 80; height: 180

//! [rectangles]
Rectangle {
    color: "#00B000"
    width: 80; height: 80
}

Rectangle {
    color: "steelblue"
    y: 100; width: 80; height: 80
}
//! [rectangles]
}
}