aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/customitems/flipable/flipable.qml
blob: 3d95afe75e0c297613d30bd9c1ba528aff6ff840 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick

Rectangle {
    id: window

    width: 480; height: 320
    color: "darkgreen"

    Row {
        anchors.centerIn: parent; spacing: 30
        Card { source: "9_club.png"; angle: 180; yAxis: 1 }
        Card { source: "5_heart.png"; angle: 540; xAxis: 1 }
    }
}