2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2021 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2021-09-23 09:21:13 +02:00
|
|
|
|
2021-10-21 16:36:09 +02:00
|
|
|
import QtQuick
|
2021-09-23 09:21:13 +02:00
|
|
|
|
|
|
|
|
Window {
|
2017-02-07 14:43:28 +01:00
|
|
|
width: 640
|
|
|
|
|
height: 480
|
2020-08-12 16:59:04 +02:00
|
|
|
visible: true
|
2021-10-21 16:36:09 +02:00
|
|
|
title: qsTr("Transitions")
|
2020-08-12 16:59:04 +02:00
|
|
|
|
2021-09-23 09:21:13 +02:00
|
|
|
Page {
|
|
|
|
|
id: page
|
|
|
|
|
anchors.fill: parent
|
2014-04-08 16:08:32 +02:00
|
|
|
}
|
2020-08-12 16:59:04 +02:00
|
|
|
}
|