aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/snippets/data/radiobutton/qtquickcontrols2-radiobutton-indicator.qml
blob: 8f781695a347b9aef4c84be2c8a7a8e67aa026fd (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: indicator
        color: "transparent"
        border.color: "red"
    }
}