aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickflickable/data/dragon.qml
blob: b82477453bf5c1ceab18acfb3cb03ef9108426c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.12

Flickable {
    id: flick
    width: 320
    height: 320
    contentWidth: 500
    contentHeight: 500
    Text {
        anchors.centerIn: parent
        font.pixelSize: 50
        text: "🐉"
        color: flick.dragging ? "orange" : "grey"
    }
}