blob: 7a58c85b1dae44bc650fd7286054f05c226231a0 [file] [log] [blame]
import QtQuick 2.0
Item {
TextInput {
objectName: "input"
focus: true
width: -1
height: -1
text: "sushi"
anchors {
left: parent.left;
leftMargin: 5
top: parent.top
topMargin: font.pixelSize
}
}
}