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

TextField {
    width: 80
    text: "TextField"
    Rectangle {
        anchors.fill: background
        color: 'transparent'
        border.color: 'red'
    }
}