aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/InfoItemTextEdit.qml
blob: be2d35d574b696498fe2266c5e6ea70ef816d019 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.11
import QtQuick.Window 2.3

Rectangle {
    property color textStrColor: "steelblue"
    property alias valueStr: input.text

    TextInput {
        id: input
    }

}