aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/quickcontrols/gifs/data/qtquickcontrols-scrollbar-snap.qml
blob: 73f84b610bcc3150a7c924e05afe28f719e74195 (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
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick
import QtQuick.Window
import QtQuick.Controls

Window {
    width: 100
    maximumHeight: 20
    visible: true

    property alias scrollbar: scrollbar

    ScrollBar {
        id: scrollbar
        size: 0.2
        stepSize: 0.25
        active: true
        width: parent.width
        anchors.centerIn: parent
        orientation: Qt.Horizontal
    }
}