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

Switch {
    text: "Switch"
    Rectangle {
        anchors.fill: label
        color: "transparent"
        border.color: "red"
    }
}