aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/snippets/data/textfield/qtquickcontrols2-textfield-placeholder.qml
blob: 89d814a62dfd2b5974dc96b0dc57c6ce57959217 (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: placeholder
        color: 'transparent'
        border.color: 'red'
    }
}