import QtQuick 2.11 import QtQuick.Window 2.11 import QtQuick.Controls 2.5 Window { visible: true width: 640 height: 480 TextEdit { anchors.centerIn: parent text: 'test ' + '' + ' test' } }