26 lines
535 B
QML
26 lines
535 B
QML
import QtQuick
|
|
import qs.Commons
|
|
import qs.Services
|
|
|
|
Column {
|
|
id: root
|
|
|
|
property string text: ""
|
|
property real fontSize: Style.fontSizeXS
|
|
property color color: Color.mOnSurface
|
|
property int fontWeight: Style.fontWeightBold
|
|
|
|
spacing: -2 * scaling
|
|
|
|
Repeater {
|
|
model: root.text.split("")
|
|
NText {
|
|
text: modelData
|
|
font.family: Settings.data.ui.fontFixed
|
|
font.pointSize: root.fontSize
|
|
font.weight: root.fontWeight
|
|
color: root.color
|
|
horizontalAlignment: Text.AlignHCenter
|
|
}
|
|
}
|
|
}
|