Warning, /plasma/libplasma/tests/buttons_pc3.0.qml is written in an unsupported language. File is not indexed.

0001 /*
0002  * SPDX-FileCopyrightText: 2018 Aleix Pol <aleixpol@kde.org>
0003  * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0004  */
0005 import QtQuick
0006 
0007 import org.kde.plasma.components as PlasmaComponents
0008 
0009 Rectangle
0010 {
0011     width: 500
0012     height: 300
0013     color: "white"
0014 
0015     Flow {
0016         anchors.fill: parent
0017         anchors.margins: 20
0018         spacing: 20
0019 
0020         PlasmaComponents.Button {
0021             text: "test"
0022         }
0023         PlasmaComponents.Button {
0024             text: "test"
0025             flat: true
0026         }
0027         PlasmaComponents.ToolButton {
0028             text: "test"
0029         }
0030     }
0031 }
0032