368d6fafea
Code backup
22 lines
410 B
QML
22 lines
410 B
QML
import QtQuick 2.11
|
|
import QtQuick.Controls 2.4
|
|
|
|
Rectangle {
|
|
id: scrollableBox
|
|
clip: true
|
|
color: "gray"
|
|
|
|
property alias text: content.text
|
|
|
|
Text {
|
|
id: content
|
|
anchors.left: scrollableBox.left
|
|
anchors.right: scrollableBox.right
|
|
leftPadding: 5
|
|
rightPadding: 12
|
|
topPadding: 3
|
|
bottomPadding: 3
|
|
wrapMode: Text.WrapAnywhere
|
|
}
|
|
}
|