aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/pointerHandlers/dragHandlerMargin.qml
blob: 7844d118e432738e858fe3411975f04a5c5a2fde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick

//! [entire]
Item {
    width: 320
    height: 240
    //![draggable]
    Rectangle {
        width: 24
        height: 24
        border.color: "steelblue"
        Text {
            text: "it's\ntiny"
            font.pixelSize: 7
            rotation: -45
            anchors.centerIn: parent
        }

        DragHandler {
            margin: 12
        }
    }
    //![draggable]
}
//! [entire]