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

Switch {
    text: "Switch"
    background: Rectangle {
        color: "transparent"
        border.color: "red"
    }
}