summaryrefslogtreecommitdiffstats
path: root/components/package/contents/ui/TextView.qml
blob: 7c2f315345f29b45e886743f18164f25811519b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.4
import QtQuick.Controls 1.3

Item {
    id: root
    property string content;
    property int contentWidth: 0;
    property int contentHeight: textView.contentHeight;
    Text {
        id: textView
        wrapMode: Text.WordWrap
        anchors.fill: parent
        text: content
    }
}