24 lines
476 B
QML
24 lines
476 B
QML
import QtQuick
|
|
|
|
FocusScope {
|
|
property alias input: input
|
|
property alias text: input.text
|
|
property alias passwordCharacter: input.passwordCharacter
|
|
property alias echoMode: input.echoMode
|
|
|
|
height: input.contentHeight + 8
|
|
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
//border.color: "gray"
|
|
//color: "lightsteelblue"
|
|
}
|
|
|
|
TextInput {
|
|
id: input
|
|
anchors.fill: parent
|
|
anchors.margins: 4
|
|
focus: true
|
|
}
|
|
}
|