summaryrefslogtreecommitdiffstats
path: root/examples/demos/coffee/Home.qml
blob: 7daf26ce81fda2a28c40a5df9356da08aa7a08f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick

HomeForm {
    grid.states: [
        State {
            name: "small"
            when: ((Screen.height * Screen.devicePixelRatio)
                   + (Screen.width * Screen.devicePixelRatio)) < 2000
            PropertyChanges {
                target: header
                font.pixelSize: 28
            }
            PropertyChanges {
                target: caption
                font.pixelSize: 14
            }
        }
    ]
}