punktdateien/kde/plasma/look-and-feel/RedDash/contents/splash/Digit.qml
2024-02-14 21:14:16 +01:00

24 lines
461 B
QML

import QtQuick 2.15
Rectangle
{
id: root
property int number
property alias font: text.font.family
radius: height * 0.05
color: "#9b0000"
Text
{
id: text
text: (root.number < 10 ? "0" : "") + root.number
anchors.fill: parent
color: "#d8d8d8"
font.pixelSize: Math.min(height * 0.4, width * 0.4)
font.family: fixedFont.name
renderType: Text.QtRendering
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
}