summaryrefslogtreecommitdiffstats
path: root/examples/sensors/qmlqtsensors/components/Divider.qml
blob: 4856d6656f9b0f18a0d54dbbad55f4a2c2b0e1df (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 BSD-3-Clause

import QtQuick

Column {
    spacing: 5
    width: parent.width
    property alias label: textLabel.text

    Rectangle {
        border.width: 1
        height: 2
        width: parent.width
        anchors.margins: 20
        border.color: "#2d2b19"
    }
    Text {
        id: textLabel
        width: parent.width
        horizontalAlignment: Text.AlignHCenter
        font.bold: true
    }
}