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

Slider {
    value: 0.5
    Rectangle {
        anchors.fill: track
        color: "transparent"
        border.color: "red"
    }
}