aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmltest/doc/snippets/testApp/MyModule/MyButton.qml
blob: 47e32c3b6cef879b2aa2046eb07e4b90c7ccd9cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
//! [define]
import QtQuick
import QtQuick.Controls

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