blob: c8ca62f7e88b1b9fc270f5b33ab7f34c848c67f3 [file] [log] [blame]
import QtQuick 2.0
Item {
width: 320
height: 480
TextEdit {
anchors.centerIn: parent
font.family: "Arial"
font.pixelSize: 16
color: "green"
textFormat: Text.RichText
text: "<body bgcolor=lightblue>Some text<br />Some more text</body>"
}
}