aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/snippets/data/qtlabscontrols-textfield-placeholder.qml
blob: ef20c5e22a93b66dfc36834de640fef6c797566d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0
import Qt.labs.controls 1.0

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