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.
24 lines
503 B
24 lines
503 B
3 years ago
|
import QtQuick 2.15
|
||
|
|
||
|
Item {
|
||
|
height: parent.height
|
||
|
property alias text: id_text.text
|
||
|
property bool makeGreen: false
|
||
|
property bool isBold: false
|
||
|
|
||
|
Text {
|
||
|
id: id_text
|
||
|
anchors.fill: parent
|
||
|
horizontalAlignment: Text.AlignHCenter
|
||
|
verticalAlignment: Text.AlignVCenter
|
||
|
color: {
|
||
|
if (makeGreen) {
|
||
|
return "#3e8740"
|
||
|
} else {
|
||
|
return "#505550"
|
||
|
}
|
||
|
}
|
||
|
font.bold: isBold
|
||
|
}
|
||
|
}
|