diff options
author | Paul Wicking <paul.wicking@qt.io> | 2022-12-05 10:24:40 +0100 |
---|---|---|
committer | Paul Wicking <paul.wicking@qt.io> | 2022-12-07 02:06:40 +0000 |
commit | e37459cc88c2018b36f5fb70dd1c56db70c42487 (patch) | |
tree | 7243a39f39db9ec8699b4ca3f540caaab6134e28 /tests/manual/quickcontrols/material/Constants.qml | |
parent | 5ce3b931fec49eb77912d1510342d1d341c6cac7 (diff) | |
download | qtdeclarative-wip/material3.tar.gz |
Move manual test for material stylewip/material3
After the renaming, tests/manual/quickcontrols2 is now
tests/manual/quickcontrols.
Change-Id: I95b34c68b6e684052e98a4bf0561beb9c9750efe
Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'tests/manual/quickcontrols/material/Constants.qml')
-rw-r--r-- | tests/manual/quickcontrols/material/Constants.qml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/manual/quickcontrols/material/Constants.qml b/tests/manual/quickcontrols/material/Constants.qml new file mode 100644 index 0000000000..51b9b6ff23 --- /dev/null +++ b/tests/manual/quickcontrols/material/Constants.qml @@ -0,0 +1,11 @@ +// Copyright (C) 2022 The Qt Company Ltd. +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause +pragma Singleton + +import QtQml + +QtObject { + readonly property url iconSource: "qrc:/qt-project.org/imports/QtQuick/Controls/Basic/images/check.png" + readonly property int pageTopPadding: 20 + readonly property int spacing: 40 +} |