aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quickcontrols/qquickdrawer/data/slider.qml
blob: f1deb12500b3d51e58afee29ab09a54536b0f198 (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) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QtQuick.Controls

ApplicationWindow {
    width: 400
    height: 400

    property alias drawer: drawer
    property alias slider: slider

    Drawer {
        id: drawer
        width: 300
        height: 400
        position: 1.0
        visible: true

        Slider {
            id: slider
            value: 1
            width: parent.width
        }
    }
}