aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/snippets/data/scrollindicator/qtlabscontrols-scrollindicator-background.qml
blob: 991751aff558b9996fd6c98b8d7d190110a2e03b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0
import Qt.labs.controls 1.0

ScrollIndicator {
    size: 0.5
    position: 0.5
    active: true
    height: 100
    background: Rectangle {
        color: "transparent"
        border.color: "red"
    }
}