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

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