20 lines
408 B
QML
20 lines
408 B
QML
import QtQuick
|
|
import qs.Common
|
|
|
|
Text {
|
|
id: root
|
|
|
|
anchors.margins: 5
|
|
horizontalAlignment: Text.AlignHCenter
|
|
verticalAlignment: Text.AlignVCenter
|
|
wrapMode: Text.Wrap
|
|
textFormat: Text.MarkdownText
|
|
font.bold: true
|
|
font.pixelSize: Theme.pixelSize
|
|
font.family: Theme.fontFamily
|
|
color: Theme.textColor
|
|
onLinkActivated: link => Qt.openUrlExternally(link)
|
|
|
|
text: ""
|
|
}
|