You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
293 B

import QtQuick 2.7
import QtQuick.Controls 2.0
Text {
property bool wrap: false
property int fontSize: 20
property bool fontBold: false
property string fontColor: "#ffffff"
color: fontColor
font.bold: fontBold
font.pointSize: fontSize
wrapMode: wrap ? Text.WordWrap : Text.NoWrap
}