aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/qml/reusablecomponents/application.qml
blob: 7c40bda2b69be013da86be1015c67b3203018c09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
//! [document]
import QtQuick

Rectangle {
    width: 175; height: 350
    color: "lightgrey"

    Column {
        anchors.centerIn: parent
        spacing: 15
        Button {}
        Button {text: "Me Too!"}
        Button {text: "Me Three!"}
//! [grouped property]
        Button {label.color: "green"}
//! [grouped property]
    }
}
//! [document]