aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/text/Rule.qml
blob: 322f9f7cef18c64425a76f97c2934bd56da297a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick

Text {
    id: root
    horizontalAlignment: Text.AlignHCenter
    Rectangle {
        id: leftRule
        width: (root.width - root.contentWidth) / 2 - 5
        height: 4
        y: root.height / 2
        color: "steelblue"
    }
    Rectangle {
        width: leftRule.width
        height: 4
        x: root.width - width
        y: root.height / 2
        color: "steelblue"
    }
}