blob: 8ae872a7143de7aab711e872c868c8d0806cfc2c [file] [log] [blame]
import QtQuick 2.0
Rectangle { width: 300; height: 300; color: "white"
TextInput {
text: "Hello world!"
id: textInputObject;
objectName: "textInputObject"
width: 300; height: 300
wrapMode: TextInput.Wrap
cursorDelegate: contextDelegate
}
}