nova-shell/shell/applets/InfoRow.qml

34 lines
856 B
QML

import QtQuick
import "../services" as S
import NovaStats as NS
Item {
id: root
required property string label
required property string value
property color valueColor: NS.ThemeService.base05
width: parent?.width ?? 0
height: 18
Text {
anchors.left: parent.left
anchors.leftMargin: 12
anchors.verticalCenter: parent.verticalCenter
text: root.label
color: NS.ThemeService.base04
font.pixelSize: NS.ThemeService.fontSize - 2
font.family: NS.ThemeService.fontFamily
}
Text {
anchors.right: parent.right
anchors.rightMargin: 12
anchors.verticalCenter: parent.verticalCenter
text: root.value
color: root.valueColor
font.pixelSize: NS.ThemeService.fontSize - 2
font.family: NS.ThemeService.fontFamily
}
}