mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
18 lines
381 B
QML
18 lines
381 B
QML
import QtQuick 2.7
|
|
|
|
Item {
|
|
property alias text: description.text
|
|
property alias fontSize: description.font.pointSize
|
|
|
|
height: 90
|
|
|
|
Text {
|
|
anchors.fill: parent
|
|
anchors.leftMargin: 50
|
|
anchors.rightMargin: 50
|
|
font.pointSize: 12
|
|
id: description
|
|
verticalAlignment: Text.AlignVCenter
|
|
wrapMode: Text.WordWrap
|
|
}
|
|
}
|