aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/snippets/data/scrollbar/qtquickcontrols2-scrollbar-background.qml
blob: e466a36f146b48b45647c661b2b4cbbf6e2cbeeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0
import QtQuick.Controls 2.0

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