summaryrefslogtreecommitdiff
path: root/tests/manual/qml/testfiles_quick2/flipable.qml
blob: 3ad85a4165f5cf1defbb61481f0a2d6250df1818 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import QtQuick 2.0

Flipable {
    width: 640
    height: 480
    front: Text {
        text: "front"
    }
    back: Text {
        text: "back"
    }

}