aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmltest/doc/snippets/modules_MyModule_MyButton.qml
blob: 7cf9a19f00e14aecca742d3c543c072a13cd7765 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
//! [define]
import QtQuick
import QtQuick.Controls

Button {
    width: 50; height: 50
    onClicked: { width = 100; }
}
//! [define]