aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/quickcontrols/gifs/data/qtquickcontrols2-button-flat.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/quickcontrols/gifs/data/qtquickcontrols2-button-flat.qml')
-rw-r--r--tests/manual/quickcontrols/gifs/data/qtquickcontrols2-button-flat.qml19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/manual/quickcontrols/gifs/data/qtquickcontrols2-button-flat.qml b/tests/manual/quickcontrols/gifs/data/qtquickcontrols2-button-flat.qml
new file mode 100644
index 0000000000..c08885ccf7
--- /dev/null
+++ b/tests/manual/quickcontrols/gifs/data/qtquickcontrols2-button-flat.qml
@@ -0,0 +1,19 @@
+// Copyright (C) 2017 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+
+import QtQuick
+import QtQuick.Window
+import QtQuick.Controls
+
+Window {
+ width: button.width
+ height: button.height
+ visible: true
+
+ Button {
+ id: button
+ text: pressed ? "Pressed" : "Button"
+ flat: true
+ anchors.centerIn: parent
+ }
+}