moment/harmonyqml/PlainLabel.qml

13 lines
239 B
QML
Raw Normal View History

2019-03-22 14:28:14 +11:00
import QtQuick 2.7
import QtQuick.Controls 2.0
Label {
2019-03-26 09:29:46 +11:00
property int bigSize: 24
2019-03-22 14:28:14 +11:00
property int normalSize: 16
property int smallSize: 12
font.family: "Roboto"
font.pixelSize: normalSize
textFormat: Text.PlainText
}