import QtQuick
Item {
width: 320
height: 160
Item {
width: 320
height: 100
Rectangle {
id: alignItem
width: parent.width
height: 1
color: "blue"
anchors.bottom: parent.bottom
}
TextEdit {
id: textItem
textFormat: TextEdit.RichText
font.family: "Arial"
font.pixelSize: 50
text: "a犜णa犜णa犜ण"
anchors.baseline: alignItem.top
anchors.left: alignItem.left
}
}
}